12345678910111213 |
- import React from "react";
- const useLockBody = () => {
- React.useLayoutEffect((): (() => void) => {
- const originalStyle: string = window.getComputedStyle(
- document.body
- ).overflow
- document.body.style.overflow = "hidden"
- return () => (document.body.style.overflow = originalStyle)
- }, [])
- }
- export default useLockBody
|