Skip to content

Instantly share code, notes, and snippets.

@jottenlips
Created January 6, 2021 15:46
Show Gist options
  • Save jottenlips/7e1ef0e2ac253d3100b511c3bc94e129 to your computer and use it in GitHub Desktop.
Save jottenlips/7e1ef0e2ac253d3100b511c3bc94e129 to your computer and use it in GitHub Desktop.
react use-disable-body-scroll
import { useEffect } from 'react';
export const useDisableBodyScroll = (open) => {
useEffect(() => {
if (open) {
document.body.style.overflow = 'hidden';
} else {
document.body.style.overflow = 'unset';
}
}, [open]);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment