Fix missing ts types for TabPane, close #4776

This commit is contained in:
afc163 2017-02-09 16:25:16 +08:00
parent df2982aacf
commit ac23cca8b3

View File

@ -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> {