Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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)
}