UNPKG

edit-on-slate

Version:

Slate 기반의 직관적이고 강력한 리액트 텍스트 에디터 라이브러리

14 lines (13 loc) 395 B
import React from "react"; import { Descendant } from "slate"; export interface EditorProps { value?: Descendant[]; onChange?: (value: Descendant[]) => void; placeholder?: string; readOnly?: boolean; containerStyle?: React.CSSProperties; editorStyle?: React.CSSProperties; height?: string; } export declare const Editor: React.FC<EditorProps>; export default Editor;