import React from "react";
import {
AppBar,
Tabs,
Tab,
Typography,
Toolbar,
} from "@material-ui/core";
import { makeStyles } from '@material-ui/core/styles';
import TimerIcon from '@material-ui/icons/Timer';
import AccountCircleIcon from '@material-ui/icons/AccountCircle';
import AssignmentIcon from '@material-ui/icons/Assignment';
import GitHubIcon from '@material-ui/icons/GitHub';
const useStyles = makeStyles(theme => ({
logo: {
color: theme.palette.secondary.main,
margin: theme.spacing(0, 3, 0, 3),
},
tab: {
'& .MuiTab-wrapper': {
padding: theme.spacing(2),
flexDirection: 'row',
'& svg': {
marginRight: theme.spacing(1),
marginBottom: '0 !important',
}
}
}
}));
const Header = ({ page, setPage }) => {
const classes = useStyles();
const handleChange = (event, newPage) => {
setPage(newPage);
};
const icons = {
app: (),
profile: (),
scoreboard: (),
contribute: (),
};
return (
ChronoCube
{ Object.keys(icons).map(item => (
))}
);
};
export default Header;