UNPKG

devi-rich-editor

Version:

Reusable Rich Text Editor built with TipTap and React.

10 lines (9 loc) 270 B
import { default as React } from 'react'; export interface EditorProps { initialContent?: string; onChange?: (content: string) => void; readOnly?: boolean; className?: string; } declare const RichEditor: React.FC<EditorProps>; export default RichEditor;