import { Link } from 'react-router-dom'; import { useDispatch, useSelector } from 'react-redux'; // material-ui import { ButtonBase } from '@mui/material'; // project imports import Logo from 'ui-component/Logo'; import { MENU_OPEN } from 'store/actions'; // ==============================|| MAIN LOGO ||============================== // const LogoSection = () => { const defaultId = useSelector((state) => state.customization.defaultId); const dispatch = useDispatch(); return ( dispatch({ type: MENU_OPEN, id: defaultId })} component={Link} to="/"> ); }; export default LogoSection;