From 14e2e71ee19164f13b8ee069025aae16910ae8d4 Mon Sep 17 00:00:00 2001 From: Akiru Date: Sat, 27 Jan 2024 14:43:27 +0000 Subject: [PATCH] ui/App.tsx aktualisiert Add DisclaimerPage to Routing --- ui/App.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/App.tsx b/ui/App.tsx index 1781ac7..3aae089 100644 --- a/ui/App.tsx +++ b/ui/App.tsx @@ -8,6 +8,7 @@ import { StatsPage } from "./StatsPage.tsx"; import { WorkersPage } from "./WorkersPage.tsx"; import { fetchApi, handleResponse } from "./apiClient.ts"; import { useLocalStorage } from "./useLocalStorage.ts"; +import { DisclaimerPage } from "./DisclaimerPage"; export function App() { // store session ID in the local storage @@ -39,8 +40,9 @@ export function App() { } /> } /> } /> + } /> ); -} +} \ No newline at end of file