chore: jsx to react to jsx

This commit is contained in:
Joel
2025-02-08 16:08:41 +08:00
parent d062519f60
commit 1e4f3bc459
41 changed files with 483 additions and 250 deletions

View File

@ -19,7 +19,7 @@ const NoteEditorContext = createContext<NoteEditorStore | null>(null)
type NoteEditorContextProviderProps = {
value: string
children: JSX.Element | string | (JSX.Element | string)[]
children: React.JSX.Element | string | (React.JSX.Element | string)[]
}
export const NoteEditorContextProvider = memo(({
value,