UNPKG

417 BJavaScriptView Raw
1import * as React from 'react';
2export const TabsContext = React.createContext({
3 variant: 'default',
4 mountOnEnter: false,
5 unmountOnExit: false,
6 localActiveKey: '',
7 uniqueId: '',
8 handleTabClick: () => null,
9 handleTabClose: undefined
10});
11export const TabsContextProvider = TabsContext.Provider;
12export const TabsContextConsumer = TabsContext.Consumer;
13//# sourceMappingURL=TabsContext.js.map
\No newline at end of file