Created the routes index.jsx

This commit is contained in:
2023-07-30 20:45:01 +02:00
parent 168457558c
commit 2ae9d493eb

View File

@@ -0,0 +1,17 @@
import Home from "@/states/Dashboard/pages/Home";
import {PieChart} from "@mui/icons-material";
export const routes = [
{
path: "/",
element: <Home/>,
}
]
export const sidebar = [
{
path: "/",
icon: <PieChart />,
name: "Home"
}
]