Added Content & the Sidebar to the App.jsx
This commit is contained in:
parent
06b8034b93
commit
1a6698445f
@ -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 />
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user