diff --git a/client/src/common/components/Sidebar/components/SidebarContent/SidebarContent.jsx b/client/src/common/components/Sidebar/components/SidebarContent/SidebarContent.jsx new file mode 100644 index 0000000..bef871a --- /dev/null +++ b/client/src/common/components/Sidebar/components/SidebarContent/SidebarContent.jsx @@ -0,0 +1,29 @@ +import PowerItemGroup from "./components/PowerItemGroup"; +import PowerItem from "./components/PowerItem"; +import "./styles.sass"; +import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"; +import {faSearch} from "@fortawesome/free-solid-svg-icons"; +import {routes} from "@/common/routes"; + +export const SidebarContent = () => { + return ( +
+
+ + +
+ + +
+ + {Object.keys(routes).map((route) => ( + + {routes[route].map((route) => ( + + ))} + + ))} +
+
+ ); +} \ No newline at end of file