import React from 'react'; import { Tabs, TabsProps } from 'antd'; import style from './style.module.less'; export interface MiniTabsProp extends TabsProps {} const MiniTabs: React.FC = function ({ children, ...props }) { return ( {children} ); }; export default MiniTabs;