UNPKG

dareway-rui

Version:

15 lines (12 loc) 331 B
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;