// dim이 발생하면 바로 scroll 막기
useEffect(() => {
document.body.style.overflow = "hidden";
document.body.style.touchAction = "none";
});
// close 버튼 눌렀을 때 scroll 허용
const onCloseModalHandler = () => {
document.body.style.removeProperty("overflow");
document.body.style.removeProperty("touch-action");
};