useScrollLock
Lock scrolling on the document body.
Usage Example
1import { useScrollLock } from '@danixsoft/hooks';
2
3function Example() {
4 useScrollLock(true);
5
6 return <p>The body is locked!</p>;
7}Lock scrolling on the document body.
1import { useScrollLock } from '@danixsoft/hooks';
2
3function Example() {
4 useScrollLock(true);
5
6 return <p>The body is locked!</p>;
7}