@gechiui/components
Version:
UI components for GeChiUI.
13 lines (10 loc) • 328 B
text/typescript
/**
* GeChiUI dependencies
*/
import { createContext } from '@gechiui/element';
/**
* Internal dependencies
*/
import type { NavigatorContext as NavigatorContextType } from './types';
const initialContextValue: NavigatorContextType = [ {}, () => {} ];
export const NavigatorContext = createContext( initialContextValue );