import { Modal } from '@/components/modal'; import styles from './notepad.module.css'; import { useNoteStore } from '@/store'; interface NotepadProps { onClose: () => void; show: boolean; } export function Notepad({ onClose, show }: NotepadProps) { const note = useNoteStore(state => state.note); const write = useNoteStore(state => state.write); const words = useNoteStore(state => state.words()); const characters = useNoteStore(state => state.characters()); return (

Your Note