mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
WIP Frontend structure & authentication.
This commit is contained in:
16
client/src/components/Sidebar/Sidebar.js
Normal file
16
client/src/components/Sidebar/Sidebar.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
import SidebarContainer from 'components/Sidebar/SidebarContainer';
|
||||
import SidebarHead from 'components/Sidebar/SidebarHead';
|
||||
import SidebarMenu from 'components/Sidebar/SidebarMenu';
|
||||
|
||||
export default function Sidebar() {
|
||||
return (
|
||||
<SidebarContainer>
|
||||
<SidebarHead />
|
||||
|
||||
<div className="sidebar__menu">
|
||||
<SidebarMenu />
|
||||
</div>
|
||||
</SidebarContainer>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user