From abcb9e0d7a62b63cb93604276fdbd73019dd04f4 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 9 Jul 2023 00:28:46 +0200 Subject: [PATCH] Integrated the Footer component in the Root.jsx --- src/common/layouts/Root/Root.jsx | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/src/common/layouts/Root/Root.jsx b/src/common/layouts/Root/Root.jsx index 09d5b6b..9a04e9c 100644 --- a/src/common/layouts/Root/Root.jsx +++ b/src/common/layouts/Root/Root.jsx @@ -1,16 +1,15 @@ import Navigation from "@components/Navigation"; import {Outlet} from "react-router-dom"; import {Box, Toolbar} from "@mui/material"; +import Footer from "@components/Footer"; -export const Root = () => { - return ( - <> - +export const Root = () => <> + - - - - - - ) -} \ No newline at end of file + + + + +