import { useContext } from 'react' import { EditorContext } from './use-slate-static' /** * Get the current editor object from the React context. * @deprecated Use useSlateStatic instead. */ export const useEditor = () => { const editor = useContext(EditorContext) if (!editor) { throw new Error( `The \`useEditor\` hook must be used inside the component's context.` ) } return editor }