From 47a63a774ebede5db65f17a29a36f0b76d9ed85a Mon Sep 17 00:00:00 2001 From: MAZE Date: Fri, 30 Aug 2024 23:38:37 +0330 Subject: [PATCH] feat: add store to the notepad --- src/components/tools/notepad/index.ts | 1 - src/components/tools/notepad/index.tsx | 11 +++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) delete mode 100644 src/components/tools/notepad/index.ts create mode 100644 src/components/tools/notepad/index.tsx 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 ( + + + + ); +}