import React, { useMemo } from 'react' import { createEditor, Descendant } from 'slate' import { Slate, Editable, withReact } from 'slate-react' import { withHistory } from 'slate-history' const initialValue: Descendant[] = [ { type: 'paragraph', children: [{ text: '' }], }, ] const PlainTextExample = () => { const editor = useMemo(() => withHistory(withReact(createEditor())), []) return ( (

{children}

              Use the renderPlaceholder prop to customize rendering of the
              placeholder
            
)} />
) } export default PlainTextExample