Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { createContext, useContext } from 'react'
/**
* A React context for sharing the `focused` state of the editor.
*/
export const FocusedContext = createContext(false)
/**
* Get the current `focused` state of the editor.
*/
export const useFocused = (): boolean => {
return useContext(FocusedContext)
}