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