dareway-rui
Version:
15 lines (12 loc) • 331 B
TypeScript
import * as React from 'react';
import TabPage from './TabPage';
declare interface propTypes {
name: string;
defaultSelectedTabPage?: string;
onTabClick?: Function
}
export default class Tab extends React.Component<propTypes> {
static TabPage: typeof TabPage;
}
// @ts-ignore
Tab.TabPage = TabPage;