Last active
February 16, 2020 10:09
-
-
Save gustav1105/6c9549ea55ccee5a7582f88c2c7d81b6 to your computer and use it in GitHub Desktop.
editor-component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Box onClick={focusEditor} p={4}> | |
<EditorContext.Provider value={editorState}> | |
<Editor | |
editorState={editorState} | |
onChange={setEditorState} | |
placeholder="Click here to start typing in the editor..." | |
blockRendererFn={renderBlock} | |
ref={editor} | |
/> | |
</EditorContext.Provider> | |
</Box> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment