feat: add store to the notepad

This commit is contained in:
MAZE 2024-08-30 23:38:37 +03:30
parent edd53d8102
commit 47a63a774e
2 changed files with 11 additions and 1 deletions

View file

@ -1 +0,0 @@
export { Notepad } from './notepad';

View file

@ -0,0 +1,11 @@
import { StoreConsumer } from '@/components/store-consumer';
import { Notepad as NotepadComponent } from './notepad';
export function Notepad() {
return (
<StoreConsumer>
<NotepadComponent />
</StoreConsumer>
);
}