From 69b23e2e64dc1dfa2ddc2af6e94f04568b937f5d Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 30 May 2023 18:13:39 +0200 Subject: [PATCH] Created the Content.jsx --- client/src/common/components/Content/Content.jsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 client/src/common/components/Content/Content.jsx diff --git a/client/src/common/components/Content/Content.jsx b/client/src/common/components/Content/Content.jsx new file mode 100644 index 0000000..a5bbe0d --- /dev/null +++ b/client/src/common/components/Content/Content.jsx @@ -0,0 +1,13 @@ +import "./styles.sass"; +import {routes} from "@/common/routes"; +import {Route, Routes} from "react-router-dom"; + +export const Content = () => ( +
+ + {Object.keys(routes).map((route) => (routes[route].map((route) => ( + + ))))} + +
+) \ No newline at end of file