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 ( <> - - + + +
+ + ) }