[FEATURE] Mutable Servers & Edit UI (#8)
Co-authored-by: Dunemask <dunemask@gmail.com> Reviewed-on: https://gitea.dunemask.dev/elysium/minecluster/pulls/8
This commit is contained in:
parent
23efaafe1d
commit
3d73f69678
19 changed files with 291 additions and 35 deletions
|
@ -1,6 +1,7 @@
|
|||
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";
|
||||
|
@ -21,10 +22,17 @@ export default [
|
|||
visible: true,
|
||||
},
|
||||
{
|
||||
name: "Edit",
|
||||
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