import { MdPhotoLibrary } from 'react-icons/md'; import { useAppDispatch } from '../../app/store'; import IAIIconButton from '../../common/components/IAIIconButton'; import { setShouldShowGallery } from '../gallery/gallerySlice'; const ShowHideGalleryButton = () => { const dispatch = useAppDispatch(); const handleShowGallery = () => { dispatch(setShouldShowGallery(true)); }; return ( ); }; export default ShowHideGalleryButton;