UNPKG

@amsterdam/design-system-react

Version:

All React components from the Amsterdam Design System. Use it to compose pages in your website or application.

11 lines (10 loc) 239 B
/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import { createContext } from 'react'; const defaultValues = { activeTabId: undefined, updateTab: () => { }, }; export const TabsContext = createContext(defaultValues);