import React from 'react'; import SidebarContainer from 'components/Sidebar/SidebarContainer'; import SidebarHead from 'components/Sidebar/SidebarHead'; import SidebarMenu from 'components/Sidebar/SidebarMenu'; import { useGetSidebarMenu } from './utils'; import 'style/containers/Dashboard/Sidebar.scss'; export default function Sidebar({ dashboardContentRef }) { const menu = useGetSidebarMenu(); return (
); } /** * Sidebar footer version. * @returns {React.JSX} */ function SidebarFooterVersion() { const { REACT_APP_VERSION: VERSION } = process.env; if (!VERSION) { return null; } return ; }