diff --git a/src/common/layouts/Root/Root.jsx b/src/common/layouts/Root/Root.jsx new file mode 100644 index 0000000..40d69c7 --- /dev/null +++ b/src/common/layouts/Root/Root.jsx @@ -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 ( + <> + + + + + + + + ) +} \ No newline at end of file