UNPKG

react-data-entry

Version:
22 lines (21 loc) 538 B
import "react-quill/dist/quill.snow.css"; type Props = { data: { message?: string; label?: string; labelWidth?: string; required?: boolean; direction?: "row" | "column"; width?: string; placeholder?: string; [key: string]: any; }; field: { name: string; value: any; onChange: (e: any) => void; [key: string]: any; }; }; declare const CEditor: (props: Props) => import("react/jsx-runtime").JSX.Element; export default CEditor;