From 705acfbe1dd4a012c89fb52c536435986f81c0eb Mon Sep 17 00:00:00 2001 From: Tola Leng Date: Fri, 23 May 2025 18:48:03 +0800 Subject: [PATCH] Add Schedule & Incident menu sidebar --- application/src/App.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/application/src/App.tsx b/application/src/App.tsx index f0907e3..9c79abf 100644 --- a/application/src/App.tsx +++ b/application/src/App.tsx @@ -16,6 +16,7 @@ import Settings from "./pages/Settings"; import Profile from "./pages/Profile"; import NotFound from "./pages/NotFound"; import SslDomain from "./pages/SslDomain"; +import ScheduleIncident from "./pages/ScheduleIncident"; // Create a Protected route component const ProtectedRoute = ({ children }: { children: React.ReactNode }) => { @@ -102,6 +103,14 @@ const App = () => { } /> + + + + } + /> {/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */} } />