@wordpress/components
Version:
UI components for WordPress.
9 lines (7 loc) • 321 B
text/typescript
import { createContext } from '@wordpress/element';
import type { TooltipInternalContext as TooltipInternalContextType } from './types';
export const TooltipInternalContext =
createContext< TooltipInternalContextType >( {
isNestedInTooltip: false,
} );
TooltipInternalContext.displayName = 'TooltipInternalContext';