| import React, { useMemo } from 'react' | |
| import { createEditor, Descendant } from 'slate' | |
| import { Slate, Editable, withReact } from 'slate-react' | |
| import { withHistory } from 'slate-history' | |
| const PlainTextExample = () => { | |
| const editor = useMemo(() => withHistory(withReact(createEditor())), []) | |
| return ( | |
| <Slate editor={editor} initialValue={initialValue}> | |
| <Editable placeholder="Enter some plain text..." /> | |
| </Slate> | |
| ) | |
| } | |
| const initialValue: Descendant[] = [ | |
| { | |
| type: 'paragraph', | |
| children: [ | |
| { text: 'This is editable plain text, just like a <textarea>!' }, | |
| ], | |
| }, | |
| ] | |
| export default PlainTextExample | |