From 1a6698445ff1fbb21aae3a146121d8ec4becd3e5 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Mon, 8 May 2023 22:05:21 +0200 Subject: [PATCH] Added Content & the Sidebar to the App.jsx --- client/src/App.jsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/client/src/App.jsx b/client/src/App.jsx index 93fe654..6df261a 100644 --- a/client/src/App.jsx +++ b/client/src/App.jsx @@ -1,6 +1,20 @@ +import Sidebar from "@/common/components/Sidebar/index.js"; +import "@/common/styles/fonts.sass"; +import "@/common/styles/main.sass"; + +const Content = () => { + return ( + <> +

Content

+ + ) +} + const App = () => { return ( <> + + ) }