UNPKG

@wordpress/components

Version:
16 lines (12 loc) 289 B
/** * External dependencies */ import type * as Ariakit from '@ariakit/react'; /** * WordPress dependencies */ import { createContext } from '@wordpress/element'; const ToolbarContext = createContext< Ariakit.ToolbarStore | undefined >( undefined ); export default ToolbarContext;