mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
419 B
TypeScript
15 lines
419 B
TypeScript
import * as React from 'react';
|
|
|
|
export interface TabsProps {
|
|
name?: string;
|
|
onChange?: (selectedTab: string, name: string) => void;
|
|
handleSelect?: (tab: string, name: string) => void;
|
|
selectedTab?: string;
|
|
activeLinkStyle?: object;
|
|
visibleTabStyle?: object;
|
|
disableInlineStyles?: boolean;
|
|
renderActiveTabContentOnly?: boolean;
|
|
}
|
|
|
|
export class Tabs extends React.Component<TabsProps> {}
|