17 lines
287 B
JavaScript
17 lines
287 B
JavaScript
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"
|
|
}
|
|
] |