import { createContext, useContext } from 'react' /** * A React context for sharing the `composing` state of the editor. */ export const ComposingContext = createContext(false) /** * Get the current `composing` state of the editor. */ export const useComposing = (): boolean => { return useContext(ComposingContext) }