17 lines
363 B
React
17 lines
363 B
React
|
import Box from "@mui/material/Box";
|
||
|
import Toolbar from "@mui/material/Toolbar";
|
||
|
import MCLPortal from "./MCLPortal.jsx";
|
||
|
// Import Navbar
|
||
|
/*import Navbar from "./Navbar.jsx";*/
|
||
|
import MCLMenu from "./MCLMenu.jsx";
|
||
|
|
||
|
export default function Views() {
|
||
|
return (
|
||
|
<div className="view">
|
||
|
<MCLMenu />
|
||
|
<Toolbar />
|
||
|
<MCLPortal />
|
||
|
</div>
|
||
|
);
|
||
|
}
|