Implemented the Navigation into the Root.jsx layout

This commit is contained in:
Mathias Wagner
2024-03-09 12:12:32 +01:00
parent f36dc01fb3
commit 207e7af13b

View File

@@ -1,9 +1,14 @@
import {Outlet} from "react-router-dom";
import Navigation from "@/common/components/Navigation";
import "./styles.sass";
export const Root = () => {
return (
<>
<Outlet/>
<Navigation />
<main>
<Outlet/>
</main>
</>
);
}