12 lines
282 B
TypeScript
12 lines
282 B
TypeScript
// base rc-tabs 4.16.6
|
|
import Tabs from './Tabs';
|
|
import type { TabsProps } from './Tabs';
|
|
import TabPane from './TabPanelList/TabPane';
|
|
import type { TabPaneProps } from './TabPanelList/TabPane';
|
|
|
|
export type { TabsProps, TabPaneProps };
|
|
|
|
export { TabPane };
|
|
|
|
export default Tabs;
|