| 15 | import { FC } from "react"; |
| 16 | |
| 17 | interface EditorProps extends MDXEditorProps { |
| 18 | onValueChange: (value: string) => void; |
| 19 | className?: string; |
| 20 | contentEditableClassName?: string; |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Extend this Component further with the necessary plugins or props you need. |
nothing calls this directly
no outgoing calls
no test coverage detected