Browse Source

Fix missing ts types for TabPane, close #4776

pull/4817/head
afc163 8 years ago
parent
commit
ac23cca8b3
  1. 2
      components/tabs/index.tsx

2
components/tabs/index.tsx

@ -34,6 +34,8 @@ export interface TabPaneProps {
/** 选项卡头显示文字 */
tab?: React.ReactNode | string;
style?: React.CSSProperties;
className?: string;
disabled?: boolean;
}
export default class Tabs extends React.Component<TabsProps, any> {

Loading…
Cancel
Save