Skip to content

Commit

Permalink
feat: added routing to manage-page
Browse files Browse the repository at this point in the history
  • Loading branch information
malmen237 committed Apr 16, 2024
1 parent 6ffbab9 commit 32935e3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -60,6 +61,11 @@ const App = () => {
element={<LandingPage />}
errorElement={<ErrorPage />}
/>
<Route
path="/manage-productions"
element={<ManageProductions />}
errorElement={<ErrorPage />}
/>
<Route
path="/production/:productionId/line/:lineId"
element={<ProductionLine />}
Expand Down

0 comments on commit 32935e3

Please sign in to comment.