import type { FunctionComponent } from 'react'; import React from 'react'; import { SpinnerOverlay } from '../SpinnerOverlay'; import TabContentPanel from '../TabContentPanel'; import styles from './styles.scss'; export interface Tab { path: string; label: string; dataSign: string; isActive: () => boolean; } export interface TabContentViewProps { goTo: (path: string) => void; showTabs: boolean; showSpinner: boolean; tabs: Tab[]; } export const TabContentView: FunctionComponent = ( props, ) => { // eslint-disable-next-line react/destructuring-assignment if (props.showSpinner) { return ; } return ( ); };