UNPKG

mjeditor

Version:

A modern, plugin-extensible rich text editor for React with beautiful custom dialogs, notification system, and comprehensive editing features. Built with Slate.js for maximum flexibility.

11 lines 277 B
import React from 'react'; interface DialogProps { isOpen: boolean; onClose: () => void; title: string; children: React.ReactNode; className?: string; } declare const Dialog: React.FC<DialogProps>; export default Dialog; //# sourceMappingURL=Dialog.d.ts.map