2024-03-29 16:58:17 -06:00
|
|
|
// @ts-nocheck
|
2023-03-15 15:20:08 +00:00
|
|
|
import Home from "@mcl/pages/Home.jsx";
|
|
|
|
import Create from "@mcl/pages/Create.jsx";
|
2023-12-20 03:20:04 +00:00
|
|
|
import Files from "@mcl/pages/Files.jsx";
|
2024-01-23 20:10:00 +00:00
|
|
|
import Edit from "@mcl/pages/Edit.jsx";
|
2023-03-15 15:20:08 +00:00
|
|
|
// Go To https://mui.com/material-ui/material-icons/ for more!
|
|
|
|
import HomeIcon from "@mui/icons-material/Home";
|
|
|
|
import AddIcon from "@mui/icons-material/Add";
|
|
|
|
|
|
|
|
export default [
|
|
|
|
{
|
|
|
|
name: "Home",
|
|
|
|
path: "/mcl/home",
|
|
|
|
icon: <HomeIcon />,
|
|
|
|
component: <Home />,
|
2024-01-15 20:30:31 +00:00
|
|
|
visible: true,
|
2023-03-15 15:20:08 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Create",
|
|
|
|
path: "/mcl/create",
|
|
|
|
icon: <AddIcon />,
|
|
|
|
component: <Create />,
|
2024-01-15 20:30:31 +00:00
|
|
|
visible: true,
|
2023-03-15 15:20:08 +00:00
|
|
|
},
|
2023-12-20 03:20:04 +00:00
|
|
|
{
|
2024-01-23 20:10:00 +00:00
|
|
|
name: "Files",
|
2023-12-20 03:20:04 +00:00
|
|
|
path: "/mcl/files",
|
|
|
|
icon: <AddIcon />,
|
|
|
|
component: <Files />,
|
2024-01-15 20:30:31 +00:00
|
|
|
visible: false,
|
2023-12-20 03:20:04 +00:00
|
|
|
},
|
2024-01-23 20:10:00 +00:00
|
|
|
{
|
|
|
|
name: "Edit",
|
|
|
|
path: "/mcl/edit",
|
|
|
|
icon: <AddIcon />,
|
|
|
|
component: <Edit />,
|
|
|
|
visible: false,
|
|
|
|
},
|
2023-03-15 15:20:08 +00:00
|
|
|
];
|