From 207e7af13b3b08c8794fbe0d27b61da5e838c1ff Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 9 Mar 2024 12:12:32 +0100 Subject: [PATCH] Implemented the Navigation into the Root.jsx layout --- web/src/common/layouts/Root/Root.jsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/web/src/common/layouts/Root/Root.jsx b/web/src/common/layouts/Root/Root.jsx index 867a533f..d4200f79 100644 --- a/web/src/common/layouts/Root/Root.jsx +++ b/web/src/common/layouts/Root/Root.jsx @@ -1,9 +1,14 @@ import {Outlet} from "react-router-dom"; +import Navigation from "@/common/components/Navigation"; +import "./styles.sass"; export const Root = () => { return ( <> - + +
+ +
); } \ No newline at end of file