File size: 354 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
// @ts-expect-error The commands package is not yet typed.
import { store as commandsStore } from '@wordpress/commands';
import { useDispatch } from '@wordpress/data';
/**
* Utility function to open the command palette directly from anywhere
*/
export function useOpenCommandPalette() {
const { open } = useDispatch( commandsStore );
return open;
}
|