import React from 'react'; import { makeStyles, Theme } from '@material-ui/core/styles'; import AppBar from '@material-ui/core/AppBar'; import Tabs from '@material-ui/core/Tabs'; import Tab from '@material-ui/core/Tab'; import Typography from '@material-ui/core/Typography'; import Box from '@material-ui/core/Box'; interface TabPanelProps { children?: React.ReactNode; index: any; value: any; } function TabPanel(props: TabPanelProps) { const { children, value, index, ...other } = props; return (
); } function a11yProps(index: any) { return { id: `nav-tab-${index}`, 'aria-controls': `nav-tabpanel-${index}`, }; } interface LinkTabProps { label?: string; href?: string; } function LinkTab(props: LinkTabProps) { return (