Installing Slate
npm install slate slate-reactnpm install react react-dom immutable// Import the Slate editor.
import { Editor } from 'slate-react'// Import the `Value` model.
import { Editor } from 'slate-react'
import { Value } from 'slate'
// Create our initial value...
const initialValue = Value.fromJSON({
document: {
nodes: [
{
object: 'block',
type: 'paragraph',
nodes: [
{
object: 'text',
text: 'A line of text in a paragraph.',
},
],
},
],
},
})Last updated