From 602f00111c294f3a52b93a5cda13a23ad4312e25 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Fri, 2 Jun 2023 16:59:48 +0200 Subject: [PATCH] Removed the BrowserRouter from the App.jsx --- client/src/App.jsx | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/client/src/App.jsx b/client/src/App.jsx index a34077d..044c84b 100644 --- a/client/src/App.jsx +++ b/client/src/App.jsx @@ -1,7 +1,6 @@ import Sidebar from "@/common/components/Sidebar"; import "@/common/styles/fonts.sass"; import "@/common/styles/main.sass"; -import {BrowserRouter} from "react-router-dom"; import Header from "@/common/components/Header"; import Content from "@/common/components/Content"; import {useEffect, useState} from "react"; @@ -19,15 +18,13 @@ const App = () => { return ( <> - - - - -
- - - - + + + +
+ + + ) }