import React from 'react'; import { AppBar, Tabs, Tab, Typography, Toolbar, } from '@material-ui/core'; import { makeStyles } from '@material-ui/core/styles'; const useStyles = makeStyles(theme => ({ root: { background: theme.palette.background.elevation2, color: theme.palette.text.primary, paddingLeft: theme.spacing(3), }, logo: { margin: theme.spacing(0, 3, 0, 1), }, tab: { '& .MuiTab-wrapper': { padding: theme.spacing(2), flexDirection: 'row', fontSize: '0.8125rem', '& svg': { marginRight: theme.spacing(1), marginBottom: '0 !important', } } } })); const Header = ({ logo, contents, page, setPage }) => { const classes = useStyles(); const handleChange = (event, newPage) => { setPage(newPage); }; return ( {logo.icon} {logo.title} {contents && Object.keys(contents).map(item => ( ))} ); }; export default Header;