import * as React from 'react' export type UIContextType = { hovered?: boolean | undefined } export const UIContext = React.createContext({ hovered: undefined, }) export function MergeUIContext({ value, children }) { const currentValue = React.useContext(UIContext) return {children} }