From 2ae9d493eb00dda7de819e87f034defdb5b21ac1 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 30 Jul 2023 20:45:01 +0200 Subject: [PATCH] Created the routes index.jsx --- src/common/routes/index.jsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/common/routes/index.jsx diff --git a/src/common/routes/index.jsx b/src/common/routes/index.jsx new file mode 100644 index 0000000..e0320b3 --- /dev/null +++ b/src/common/routes/index.jsx @@ -0,0 +1,17 @@ +import Home from "@/states/Dashboard/pages/Home"; +import {PieChart} from "@mui/icons-material"; + +export const routes = [ + { + path: "/", + element: , + } +] + +export const sidebar = [ + { + path: "/", + icon: , + name: "Home" + } +] \ No newline at end of file