25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TabContainer.d.ts 486 B

3 년 전
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;