From ae623eee0d22f79de1e08ed33f9c90ddcc01c025 Mon Sep 17 00:00:00 2001 From: EvanLin3141 Date: Sat, 8 Feb 2025 00:57:17 +0000 Subject: [PATCH] ADD: Started on Quick Settings --- frontend/src/components/Layout/Navbar.tsx | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/frontend/src/components/Layout/Navbar.tsx b/frontend/src/components/Layout/Navbar.tsx index 64e744f..6eeb4c2 100644 --- a/frontend/src/components/Layout/Navbar.tsx +++ b/frontend/src/components/Layout/Navbar.tsx @@ -35,10 +35,15 @@ const Navbar: React.FC = ({ variant = "default" }) => { }); }; + const handleQuickSettings = () => { + setShowQuickSettings(!showQuickSettings); + }; + const handleSideBar = () => { setShowSideBar(!showSideBar); }; + return (