added smart bread crumbs

This commit is contained in:
Carter 2024-12-13 10:48:43 -06:00
parent 23bcb467e9
commit cd986c4f56
3 changed files with 351 additions and 2 deletions

View file

@ -8,6 +8,7 @@ import { useLocation, useParams } from "react-router-dom";
import PageContainer from "./PageContainer";
import { useMobile } from "hooks";
import LoadingScreen from "app/LoadingScreen";
import SmartBreadcrumb from "common/SmartBreadcrumb";
const useStyles = makeStyles((theme: Theme) => {
// const isMobile = useMobile()
@ -52,9 +53,10 @@ export default function DevicePage() {
return (
<PageContainer padding={isMobile ? 0 : 2}>
<Typography>
{/* <Typography>
{device.name()}
</Typography>
</Typography> */}
<SmartBreadcrumb />
</PageContainer>
);
}