diff --git a/src/components/tools/notepad/index.ts b/src/components/tools/notepad/index.ts deleted file mode 100644 index 8a3fad5..0000000 --- a/src/components/tools/notepad/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { Notepad } from './notepad'; diff --git a/src/components/tools/notepad/index.tsx b/src/components/tools/notepad/index.tsx new file mode 100644 index 0000000..02c1b24 --- /dev/null +++ b/src/components/tools/notepad/index.tsx @@ -0,0 +1,11 @@ +import { StoreConsumer } from '@/components/store-consumer'; + +import { Notepad as NotepadComponent } from './notepad'; + +export function Notepad() { + return ( + + + + ); +}