Guest User

Untitled

a guest
Jan 20th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. export interface Tab<TProps = unknown> {
  2. title: string;
  3. content: TProps extends React.HTMLAttributes<TProps>
  4. ? React.ReactNode
  5. : React.ReactElement<TProps & { viewMode: ViewMode }>;
  6. popout?: boolean;
  7. }
Add Comment
Please, Sign In to add comment