From 32935e377fcda8513e17ba22a7b2cab66b563afc Mon Sep 17 00:00:00 2001 From: malmen237 Date: Tue, 16 Apr 2024 12:47:03 +0200 Subject: [PATCH] feat: added routing to manage-page --- src/App.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index 6f186bf3..5e86f723 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -11,6 +11,7 @@ import { Error } from "./components/error"; import { useFetchDevices } from "./use-fetch-devices.ts"; import { FlexContainer } from "./components/generic-components.ts"; import { DisplayWarning } from "./components/display-box.tsx"; +import { ManageProductions } from "./components/manage-productions/manage-productions.tsx"; const DisplayBoxPositioningContainer = styled(FlexContainer)` justify-content: center; @@ -60,6 +61,11 @@ const App = () => { element={} errorElement={} /> + } + errorElement={} + /> }