diff options
author | Anton Tananaev <anton@traccar.org> | 2023-08-19 13:58:45 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2023-08-19 13:59:07 -0700 |
commit | d3c7705bedebd65c94f9eea691aaf2fe03b0cafe (patch) | |
tree | 5f98b3d9bbbd4fe8067b5a334e84aff008b8db22 /modern/src/common/components/NavBar.jsx | |
parent | 0161ae449d4a7bd0781c0665d663353663ab0faf (diff) | |
download | trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.tar.gz trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.tar.bz2 trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.zip |
Move to Vite
Diffstat (limited to 'modern/src/common/components/NavBar.jsx')
-rw-r--r-- | modern/src/common/components/NavBar.jsx | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/modern/src/common/components/NavBar.jsx b/modern/src/common/components/NavBar.jsx new file mode 100644 index 00000000..a53960fd --- /dev/null +++ b/modern/src/common/components/NavBar.jsx @@ -0,0 +1,25 @@ +import React from 'react'; +import { + AppBar, Toolbar, Typography, IconButton, +} from '@mui/material'; +import MenuIcon from '@mui/icons-material/Menu'; + +const Navbar = ({ setOpenDrawer, title }) => ( + <AppBar position="sticky" color="inherit"> + <Toolbar> + <IconButton + color="inherit" + edge="start" + sx={{ mr: 2 }} + onClick={() => setOpenDrawer(true)} + > + <MenuIcon /> + </IconButton> + <Typography variant="h6" noWrap> + {title} + </Typography> + </Toolbar> + </AppBar> +); + +export default Navbar; |