Added Content & the Sidebar to the App.jsx

This commit is contained in:
Mathias Wagner 2023-05-08 22:05:21 +02:00
parent 06b8034b93
commit 1a6698445f
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -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 (
<>
<h1 style={{margin: 0}}>Content</h1>
</>
)
}
const App = () => { const App = () => {
return ( return (
<> <>
<Sidebar />
<Content />
</> </>
) )
} }