Prevent body scrolling when a modal is opened in React
Hi, this post have small solution of how prevent body scrolling when a modal is open in React.
Code:
useEffect(() => {
if (modalOpen) {
document.body.style.overflow = 'hidden'
}
}, [modalOpen])
By Cristina Rojas.