GoScrobble/web/node_modules/reactstrap/es/TabPane.d.ts

13 lines
335 B
TypeScript

import * as React from 'react';
import { CSSModule } from './index';
export interface TabPaneProps extends React.HTMLAttributes<HTMLElement> {
[key: string]: any;
tag?: React.ElementType;
cssModule?: CSSModule;
tabId?: number | string;
}
declare class TabPane extends React.Component<TabPaneProps> {}
export default TabPane;