From cbc237a73382a1c2ba0cad92861fcb118a49fc49 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Fri, 7 Jul 2023 01:06:04 +0200 Subject: [PATCH] Created the Root.jsx --- src/common/layouts/Root/Root.jsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/common/layouts/Root/Root.jsx 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