Skip to content

Commit 3c7e22b

Browse files
committed
Fix width; rename components; test divider
1 parent 41e6665 commit 3c7e22b

3 files changed

Lines changed: 2 additions & 247 deletions

File tree

packages/app-shell/src/Layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Box from "@mui/material/Box";
22
import { Outlet } from "react-router-dom";
3-
import { SideNav } from "./SideNav";
3+
import { SidebarNav } from "./SidebarNav";
44
import { TopBar } from "./TopBar";
55
import type { RouterProps } from "./Router";
66
import { usePersistentDrawerState } from "./usePersistentDrawerState";
@@ -12,7 +12,7 @@ export function Layout(props: RouterProps) {
1212
return (
1313
<Box sx={{ display: "flex" }}>
1414
<TopBar title={props.title} open={open} setOpen={setOpen} />
15-
<SideNav navigation={props.navigation} open={open} />
15+
<SidebarNav navigation={props.navigation} open={open} />
1616
<Box component="main" sx={{ flexGrow: 1 }}>
1717
{/* The Toolbar acts as a spacer,
1818
same size as the toolbar used inside the TopBar's AppBar*/}

packages/app-shell/src/SideNav.test.tsx

Lines changed: 0 additions & 94 deletions
This file was deleted.

packages/app-shell/src/SideNav.tsx

Lines changed: 0 additions & 151 deletions
This file was deleted.

0 commit comments

Comments
 (0)