반응형
useEffect를 이용하여 컴포넌트가 마운트 될 때 스크롤을 막고, 컴포넌트 정리를 할 때 return 값으로 스크롤을 해제해준다.
useEffect(() => {
document.body.style.overflow = 'hidden';
return () => {
document.body.style.overflow = 'auto';
}
}, []);
반응형
'React' 카테고리의 다른 글
forwardRef, useImperativeHandle에 대한 이해 (0) | 2022.11.17 |
---|---|
이벤트 버블링과 캡처링 (0) | 2022.11.17 |
초 간단 Redux 사용법 (0) | 2022.11.08 |
Framer 애니메이션 배우기 (0) | 2022.11.01 |
Cannot find file does not match the corresponding name on disk (0) | 2022.09.21 |
댓글