dtd
Version:
根据数梦工场视觉规范打造的组件库,感谢react-components和ant design
10 lines (9 loc) • 441 B
TypeScript
import * as React from 'react';
import { TabsProps } from './index';
export default class TabBar extends React.Component<TabsProps> {
static defaultProps: {
animated: boolean;
type: string;
};
render(): React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>;
}