mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
16 lines
415 B
JavaScript
16 lines
415 B
JavaScript
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>
|
|
)
|
|
} |