//mui import 해주기
import Box from '@mui/material/Box';
import Typography from '@mui/material/Typography';
import Modal from '@mui/material/Modal';
const back = useSelector((state) => state.cards.current);
const handlePopup = useSelector((state) => state.cards.isPopup);
return (
<Grid>
<Modal
open={handlePopup}
onClose={close}
aria-labelledby="modal-modal-title"
aria-describedby="modal-modal-description"
>
<Box sx={style}>
<Typography id="modal-modal-title" variant="h6" component="h2">
{back.title}
</Typography>
<Typography id="unstyled-modal-description">
{back.content}
</Typography>
<Typography id="unstyled-modal-description">{back.stack} </Typography>
<Typography id="unstyled-modal-description">
{back.interest}
</Typography>
</Box>
</Modal>
</Grid>
);
-> modal open을 리덕스로 관리했는데 꼭 그렇게 안해도 된다. 오히려 불필요 할 수 있다는 얘기를 듣고 useState에서 관리할 수 있도록 변경했다.
const [shwoModal, setShowMadal] = React.useState(false);
const behind = async () => {
await dispatch(loadCurrentCardDB(id));
// !showModal : showModal이 false이면 이라는 의미
setShowMadal(!shwoModal);
};
<CardModal
show={shwoModal}
onHide={() => setShowMadal(false)}
card={currentCard}
/>