This commit is contained in:
2026-01-25 14:43:14 +01:00
parent f965340abe
commit 17684e7e2e
7 changed files with 778 additions and 28 deletions

View File

@@ -8,6 +8,7 @@ import DocumentationPage from "./pages/DocumentationPage";
import AnalysisPage from "./pages/AnalysisPage";
import ALMTypePage from "./pages/ALMTypePage";
import TraceabilityMatrixPage from "./pages/TraceabilityMatrixPage";
import ESPIDFHelperPage from "./pages/ESPIDFHelperPage";
import NotFound from "./pages/NotFound";
const queryClient = new QueryClient();
@@ -23,6 +24,7 @@ const App = () => (
<Route path="/documentation" element={<DocumentationPage />} />
<Route path="/analysis" element={<AnalysisPage />} />
<Route path="/matrix" element={<TraceabilityMatrixPage />} />
<Route path="/esp-idf" element={<ESPIDFHelperPage />} />
<Route path="/alm/:type" element={<ALMTypePage />} />
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
<Route path="*" element={<NotFound />} />