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