UNPKG

@gechiui/components

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