LoginTab.d.ts 264 Bytes
Newer Older
1
import React from 'react';
Shuai Chen's avatar
Shuai Chen committed
2

3
export interface LoginTabProps {
Shuai Chen's avatar
Shuai Chen committed
4 5
  key?: string;
  tab?: React.ReactNode;
6 7 8 9
  tabUtil: {
    addTab: (id: any) => void;
    removeTab: (id: any) => void;
  };
Shuai Chen's avatar
Shuai Chen committed
10
}
11
export default class LoginTab extends React.Component<LoginTabProps, any> {}