45 lines
1.5 KiB
React
45 lines
1.5 KiB
React
|
|
import React, {useState} from 'react';
|
||
|
|
import {makeStyles} from '@material-ui/core/styles';
|
||
|
|
import AppBar from '@material-ui/core/AppBar';
|
||
|
|
import Toolbar from '@material-ui/core/Toolbar';
|
||
|
|
import Typography from '@material-ui/core/Typography';
|
||
|
|
import Button from '@material-ui/core/Button';
|
||
|
|
import IconButton from '@material-ui/core/IconButton';
|
||
|
|
import MenuIcon from '@material-ui/icons/Menu';
|
||
|
|
import TemporaryDrawer from "./TemporaryDrawer";
|
||
|
|
|
||
|
|
const useStyles = makeStyles((theme) => ({
|
||
|
|
root: {
|
||
|
|
flexGrow: 1,
|
||
|
|
},
|
||
|
|
menuButton: {
|
||
|
|
marginRight: theme.spacing(2),
|
||
|
|
},
|
||
|
|
title: {
|
||
|
|
flexGrow: 1,
|
||
|
|
},
|
||
|
|
}));
|
||
|
|
|
||
|
|
export default function NavBar() {
|
||
|
|
const classes = useStyles();
|
||
|
|
const [drawerOpen, setDrawerOpen] = useState(false)
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className={classes.root}>
|
||
|
|
<AppBar position="static">
|
||
|
|
<Toolbar>
|
||
|
|
<IconButton edge="start" className={classes.menuButton} color="inherit" aria-label="menu" disableRipple
|
||
|
|
onClick={() => setDrawerOpen(true)}>
|
||
|
|
<MenuIcon/>
|
||
|
|
</IconButton>
|
||
|
|
<Typography variant="h6" className={classes.title}>
|
||
|
|
News
|
||
|
|
</Typography>
|
||
|
|
<Button color="inherit">Login</Button>
|
||
|
|
</Toolbar>
|
||
|
|
</AppBar>
|
||
|
|
<TemporaryDrawer drawerOpen={drawerOpen} setDrawerOpen={setDrawerOpen}/>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|