Browse Source

Fixed muckup (#5621)

pull/5887/head
Mitchell Demler 8 years ago
committed by Wei Zhu
parent
commit
0e806bbec5
  1. 4
      components/tabs/index.tsx

4
components/tabs/index.tsx

@ -17,8 +17,8 @@ export interface TabsProps {
hideAdd?: boolean;
onChange?: (activeKey: string) => void;
onTabClick?: Function;
onPrevClick?: (e: React.MouseEventHandler<any>) => void;
onNextClick?: (e: React.MouseEventHandler<any>) => void;
onPrevClick?: React.MouseEventHandler<any>;
onNextClick?: React.MouseEventHandler<any>;
tabBarExtraContent?: React.ReactNode | null;
tabBarStyle?: React.CSSProperties;
type?: TabsType;

Loading…
Cancel
Save