Added Content & the Sidebar to the App.jsx

This commit is contained in:
2023-05-08 22:05:21 +02:00
parent 06b8034b93
commit 1a6698445f

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 = () => {
return (
<>
<Sidebar />
<Content />
</>
)
}