import React, { useEffect } from 'react'; import { Scrollbar } from 'react-scrollbars-custom'; import classNames from 'classnames'; import withDashboardActions from 'containers/Dashboard/withDashboardActions'; import withDashboard from 'containers/Dashboard/withDashboard'; import { compose } from 'utils'; function SidebarContainer({ // #ownProps children, // #withDashboardActions toggleSidebarExpend, // #withDashboard sidebarExpended, }) { useEffect(() => { document.body.classList.toggle('has-mini-sidebar', !sidebarExpended); }, [sidebarExpended]); return (
); } export default compose( withDashboardActions, withDashboard(({ sidebarExpended }) => ({ sidebarExpended, })), )(SidebarContainer);