UNPKG

@newrelic/gatsby-theme-newrelic

Version:

[![Community Project header](https://github.com/newrelic/opensource-website/raw/master/src/images/categories/Community_Project.png)](https://opensource.newrelic.com/oss-category/#community-project)

20 lines (14 loc) 363 B
import { useEffect } from 'react'; const useScrollFreeze = (isFrozen) => { useEffect(() => { if (!isFrozen) { return; } const overflow = document.body.style.overflow; document.body.style.overflow = 'hidden'; return () => { document.body.style.overflow = overflow; }; }, [isFrozen]); }; export default useScrollFreeze;