UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

9 lines (8 loc) 386 B
import { FunctionComponent } from 'react'; import { TabsCustomized, TabsProps } from './Tabs'; export interface TabsWithContextProps extends TabsProps { customized: TabsCustomized | undefined | null; setCustomized: (customized: TabsCustomized | undefined | null) => void; } declare const TabsWithContext: FunctionComponent<TabsWithContextProps>; export default TabsWithContext;