'use client' // Re-export from new structure for backwards compatibility // The actual NoteEditor implementation is now in note-editor/ export { NoteEditor, useNoteEditorContext } from './note-editor/index' export type { NoteEditorContextValue, NoteEditorState, NoteEditorActions } from './note-editor/types' // Re-export all sub-components for advanced usage export { NoteEditorFullPage, NoteEditorDialog, NoteEditorProvider } from './note-editor/index' export { NoteTitleBlock, NoteContentArea, NoteMetadataSection, NoteEditorToolbar } from './note-editor/index'