diff --git a/web/app/(commonLayout)/apps/check-legacy/components/tip.tsx b/web/app/(commonLayout)/apps/check-legacy/components/tip.tsx new file mode 100644 index 0000000000..ba71d93c19 --- /dev/null +++ b/web/app/(commonLayout)/apps/check-legacy/components/tip.tsx @@ -0,0 +1,15 @@ +'use client' +import { RiBookOpenLine } from '@remixicon/react' +import type { FC } from 'react' +import React from 'react' + +const Tip: FC = () => { + return ( +
+
+ +
+
+ ) +} +export default React.memo(Tip)