import React from 'react' import { Tabs, TabsProps } from 'antd' interface NewTabsProps extends TabsProps { commonstyle?: boolean ; } const Index = (props: NewTabsProps) => { const tabStyle = props.commonstyle ? {paddingLeft: '32px',background: '#fff', margin: '-12px 0 0 0', } : {} return ( {props.children} ) } Index.TabPane = Tabs.TabPane export default Index