import React from 'react'; import { makeStyles, Theme } from '@material-ui/core/styles'; import AppBar from '@material-ui/core/AppBar'; import Tab from '@material-ui/core/Tab'; import TabContext from '@material-ui/lab/TabContext'; import TabList from '@material-ui/lab/TabList'; import TabPanel from '@material-ui/lab/TabPanel'; const useStyles = makeStyles((theme: Theme) => ({ root: { flexGrow: 1, backgroundColor: theme.palette.background.paper, }, })); export default function LabTabs() { const classes = useStyles(); const [value, setValue] = React.useState('1'); const handleChange = (event: React.ChangeEvent<{}>, newValue: string) => { setValue(newValue); }; return (
Item One Item Two Item Three
); }