Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

TabContainer.d.ts 486B

123456789101112131415161718
  1. import * as React from 'react';
  2. import { SelectCallback } from './helpers';
  3. export interface TabContainerProps {
  4. id?: string;
  5. transition?: false | React.ElementType;
  6. mountOnEnter?: boolean;
  7. unmountOnExit?: boolean;
  8. generateChildId?: (eventKey: unknown, type: 'tab' | 'pane') => string;
  9. onSelect?: SelectCallback;
  10. activeKey?: unknown;
  11. defaultActiveKey?: unknown;
  12. }
  13. declare class TabContainer extends React.Component<TabContainerProps> {}
  14. export default TabContainer;