Created the routes index.jsx

This commit is contained in:
Mathias Wagner 2023-07-30 20:45:01 +02:00
parent 168457558c
commit 2ae9d493eb
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

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"
}
]