Created the Sidebar.jsx

This commit is contained in:
Mathias Wagner 2023-05-08 22:04:43 +02:00
parent 3915c0ae6f
commit b94bde6031
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,10 @@
import SidebarHeader from "@/common/components/Sidebar/components/SidebarHeader";
import "./styles.sass";
export const Sidebar = () => {
return (
<aside>
<SidebarHeader />
</aside>
)
}