edit-on-slate
Version:
Slate 기반의 직관적이고 강력한 리액트 텍스트 에디터 라이브러리
11 lines (10 loc) • 337 B
TypeScript
import React from "react";
import { Descendant } from "slate";
export interface ReadOnlyEditorProps {
value: Descendant[];
placeholder?: string;
style?: React.CSSProperties;
containerStyle?: React.CSSProperties;
editorStyle?: React.CSSProperties;
}
export declare const ReadOnlyEditor: React.FC<ReadOnlyEditorProps>;