Skip to content

Instantly share code, notes, and snippets.

@gustav1105
Last active February 16, 2020 10:10
Show Gist options
  • Save gustav1105/adb72a1610485d7610fca24fde1988c8 to your computer and use it in GitHub Desktop.
Save gustav1105/adb72a1610485d7610fca24fde1988c8 to your computer and use it in GitHub Desktop.
editor-state-context
import * as React from "react";
import { EditorState } from "draft-js";
export const EditorContext = React.createContext<EditorState>(
EditorState.createEmpty()
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment