UNPKG

doj-react-adminlte

Version:

Simple and easy-to-use AdminLTE components for React

23 lines (18 loc) 526 B
import * as React from 'react'; export interface TabContainerProps { /** * You can set the default tab in this prop. */ defaultTab?: string; /** * You can set the active tab in this prop. */ activeTab?: string; /** * The function that is binded will be invoked after clicking the tab button. */ onTabClick?: (...args: any[])=>any; } export default class TabContainer extends React.Component<TabContainerProps, any> { render(): JSX.Element; }