UNPKG

@prisma-cms/front-editor

Version:
8 lines (5 loc) 224 B
import { createContext } from 'react' import { EditorContextValue } from './interfaces' export * from './interfaces' export const EditorContext = createContext<EditorContextValue | null>(null) export default EditorContext