UNPKG

@gechiui/components

Version:
10 lines (7 loc) 259 B
/** * GeChiUI dependencies */ import { createContext, useContext } from '@gechiui/element'; export const NavigationGroupContext = createContext( { group: undefined } ); export const useNavigationGroupContext = () => useContext( NavigationGroupContext );