diff options
Diffstat (limited to 'makima/frontend/src/main.tsx')
| -rw-r--r-- | makima/frontend/src/main.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/makima/frontend/src/main.tsx b/makima/frontend/src/main.tsx index acc9afc..32c05ba 100644 --- a/makima/frontend/src/main.tsx +++ b/makima/frontend/src/main.tsx @@ -14,6 +14,7 @@ import FilesPage from "./routes/files"; import ContractsPage from "./routes/contracts"; import OrdersPage from "./routes/orders"; import MeshPage from "./routes/mesh"; +import DaemonsPage from "./routes/daemons"; import HistoryPage from "./routes/history"; import LoginPage from "./routes/login"; import SettingsPage from "./routes/settings"; @@ -113,6 +114,14 @@ createRoot(document.getElementById("root")!).render( } /> <Route + path="/daemons" + element={ + <ProtectedRoute> + <DaemonsPage /> + </ProtectedRoute> + } + /> + <Route path="/history" element={ <ProtectedRoute> |
