From 8d9f677c4e9ccfcc6dc9297864dc49446fb5ee59 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Wed, 10 Jul 2024 15:56:33 +0100 Subject: feat(gui): use fancy new side nav (#2243) * feat(gui): use fancy new side nav * compact only sidebar, no expand-collapse * custom drag region, remove titlebar * add user popup * wire up login/logout/register, move user button to bottom and add menu * link help and feedback to forum --- ui/src/components/Sidebar/index.tsx | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 ui/src/components/Sidebar/index.tsx (limited to 'ui/src/components/Sidebar/index.tsx') diff --git a/ui/src/components/Sidebar/index.tsx b/ui/src/components/Sidebar/index.tsx new file mode 100644 index 00000000..10020952 --- /dev/null +++ b/ui/src/components/Sidebar/index.tsx @@ -0,0 +1,4 @@ +import Sidebar, { SidebarItem } from "./Sidebar"; + +export type { SidebarItem }; +export default Sidebar; -- cgit v1.3.1