UNPKG

@wordpress/components

Version:
21 lines (18 loc) 453 B
/** * WordPress dependencies */ import { createContext } from '@wordpress/element'; /** * Internal dependencies */ import type { NavigatorContext as NavigatorContextType } from './types'; const initialContextValue: NavigatorContextType = { location: {}, goTo: () => {}, goBack: () => {}, goToParent: () => {}, addScreen: () => {}, removeScreen: () => {}, params: {}, }; export const NavigatorContext = createContext( initialContextValue );