Created the Root.jsx

This commit is contained in:
Mathias Wagner 2023-07-07 01:06:04 +02:00
parent 8963a2ff88
commit cbc237a733
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,16 @@
import Navigation from "@components/Navigation";
import {Outlet} from "react-router-dom";
import {Box, Toolbar} from "@mui/material";
export const Root = () => {
return (
<>
<Navigation/>
<Box height="100vh" display="flex" flexDirection="column">
<Toolbar/>
<Outlet/>
</Box>
</>
)
}