mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
import { useEffect } from 'react';
|
|
|
|
export const useDisableOverflow = () =>
|
|
useEffect(() => {
|
|
document.body.style.overflow = 'hidden';
|
|
return () => {
|
|
document.body.style.overflow = 'auto';
|
|
};
|
|
}, []);
|