UNPKG

custom-rich-text-editor

Version:

A customizable React rich text editor with icon-based toolbar

7 lines (6 loc) 162 B
interface EditorProps { initialContent?: string; onChange?: (html: string) => void; } declare const Editor: React.FC<EditorProps>; export default Editor;