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 (