diff options
Diffstat (limited to 'makima/frontend/src/main.tsx')
| -rw-r--r-- | makima/frontend/src/main.tsx | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/makima/frontend/src/main.tsx b/makima/frontend/src/main.tsx index 5d389fc..5fd6a4e 100644 --- a/makima/frontend/src/main.tsx +++ b/makima/frontend/src/main.tsx @@ -13,6 +13,7 @@ import FilesPage from "./routes/files"; import ContractsPage from "./routes/contracts"; import WorkflowPage from "./routes/workflow"; import MeshPage from "./routes/mesh"; +import HistoryPage from "./routes/history"; import LoginPage from "./routes/login"; import SettingsPage from "./routes/settings"; @@ -91,6 +92,22 @@ createRoot(document.getElementById("root")!).render( } /> <Route + path="/history" + element={ + <ProtectedRoute> + <HistoryPage /> + </ProtectedRoute> + } + /> + <Route + path="/history/:id" + element={ + <ProtectedRoute> + <HistoryPage /> + </ProtectedRoute> + } + /> + <Route path="/settings" element={ <ProtectedRoute> |
