added bins page (mostly stubbed)
This commit is contained in:
parent
044b2ad8f4
commit
3bab272744
6 changed files with 1694 additions and 5 deletions
|
|
@ -6,6 +6,7 @@ import { useWidth } from "../hooks/useWidth";
|
|||
import { makeStyles } from "@mui/styles";
|
||||
import BindaptIcon from "../products/Bindapt/BindaptIcon";
|
||||
import { Link, useLocation } from "react-router-dom";
|
||||
import BinsIcon from "products/Bindapt/BinsIcon";
|
||||
|
||||
const drawerWidth = 230;
|
||||
|
||||
|
|
@ -103,6 +104,20 @@ export default function SideNavigator(props: Props) {
|
|||
|
||||
return (
|
||||
<List className={classes.list} component="nav">
|
||||
<Tooltip title="Bins" placement="right">
|
||||
<ListItemButton
|
||||
id="tour-dashboard"
|
||||
component={Link}
|
||||
to="/bins"
|
||||
onClick={onClose}
|
||||
classes={getClasses("/bin")}
|
||||
>
|
||||
<ListItemIcon>
|
||||
<BinsIcon />
|
||||
</ListItemIcon>
|
||||
{open && <ListItemText primary="Devices" />}
|
||||
</ListItemButton>
|
||||
</Tooltip>
|
||||
<Tooltip title="Devices" placement="right">
|
||||
<ListItemButton
|
||||
id="tour-dashboard"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue