import React from 'react' import { useSelector, useDispatch } from 'react-redux' import { CCreateElement, CSidebar, CSidebarBrand, CSidebarNav, CSidebarNavDivider, CSidebarNavTitle, CSidebarMinimizer, CSidebarNavDropdown, CSidebarNavItem, } from '@coreui/react' import CIcon from '@coreui/icons-react' // sidebar nav config import navigation from './_nav' const TheSidebar = () => { const dispatch = useDispatch() const show = useSelector(state => state.sidebarShow) return ( dispatch({type: 'set', sidebarShow: val })} > ) } export default React.memo(TheSidebar)