From 89ad710249570c8e2830c46f623464cdf094a8b1 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 30 May 2023 18:16:16 +0200 Subject: [PATCH] Updated the App.jsx --- client/src/App.jsx | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/client/src/App.jsx b/client/src/App.jsx index 6df261a..2bfc129 100644 --- a/client/src/App.jsx +++ b/client/src/App.jsx @@ -1,20 +1,18 @@ -import Sidebar from "@/common/components/Sidebar/index.js"; +import Sidebar from "@/common/components/Sidebar"; import "@/common/styles/fonts.sass"; import "@/common/styles/main.sass"; - -const Content = () => { - return ( - <> -

Content

- - ) -} +import {BrowserRouter} from "react-router-dom"; +import Header from "@/common/components/Header"; +import Content from "@/common/components/Content"; const App = () => { return ( <> - - + + +
+ + ) }