UNPKG

braid-design-system

Version:
11 lines (8 loc) 216 B
import { createContext } from 'react'; interface TabPanelsContextValues { renderInactive: boolean; panelIndex: number; } export const TabPanelsContext = createContext<TabPanelsContextValues | null>( null, );