please help me. I have a code like this, but there is a problem at the time of changing the state, the message error is 'Uncaught Error: Got unexpected null or undefined (...)'
var contentState, editorState, text;
text = this.state.text;
contentState = ContentState.createFromBlockArray(Draft.convertFromHTML(text));
editorState = EditorState.createWithContent(contentState);
this.setState({
editorState: editorState
});
*598 *599 *600
"` – Tio Lampard Nov 29 '16 at 04:00