import React from 'react'; import { SidebarContainer } from './SidebarContainer'; import { SidebarHead } from './SidebarHead'; import { SidebarMenu } from './SidebarMenu'; import { useMainSidebarMenu } from './hooks'; import { SidebarOverlayBinded } from '../SidebarOverlay'; import 'style/containers/Dashboard/Sidebar.scss'; /** * Dashboard sidebar. * @returns {JSX.Element} */ export function Sidebar() { const menu = useMainSidebarMenu(); return (
); } /** * Sidebar footer version. * @returns {React.JSX} */ function SidebarFooterVersion() { const { VERSION } = process.env; if (!VERSION) { return null; } return ; }