antd
Version:
An enterprise-class UI design language and React components implementation
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>)>;
}