UNPKG

@coreui/react

Version:

UI Components Library for React.js

9 lines (6 loc) 263 B
import { createContext } from 'react' export interface CSidebarNavContextProps { visibleGroup: string setVisibleGroup: React.Dispatch<React.SetStateAction<string | undefined>> } export const CSidebarNavContext = createContext({} as CSidebarNavContextProps)