[TS] Typecheck skipping Src
This commit is contained in:
parent
e1fe6c2f3b
commit
8c15dd6752
41 changed files with 43 additions and 2 deletions
39
src/nav/MCLPages.tsx
Normal file
39
src/nav/MCLPages.tsx
Normal file
|
@ -0,0 +1,39 @@
|
|||
// @ts-nocheck
|
||||
import Home from "@mcl/pages/Home.jsx";
|
||||
import Create from "@mcl/pages/Create.jsx";
|
||||
import Files from "@mcl/pages/Files.jsx";
|
||||
import Edit from "@mcl/pages/Edit.jsx";
|
||||
// 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 />,
|
||||
visible: true,
|
||||
},
|
||||
{
|
||||
name: "Create",
|
||||
path: "/mcl/create",
|
||||
icon: <AddIcon />,
|
||||
component: <Create />,
|
||||
visible: true,
|
||||
},
|
||||
{
|
||||
name: "Files",
|
||||
path: "/mcl/files",
|
||||
icon: <AddIcon />,
|
||||
component: <Files />,
|
||||
visible: false,
|
||||
},
|
||||
{
|
||||
name: "Edit",
|
||||
path: "/mcl/edit",
|
||||
icon: <AddIcon />,
|
||||
component: <Edit />,
|
||||
visible: false,
|
||||
},
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue