Skip to content

useBodyScrollLock

Interface

ts
function useBodyScrollLock(): void;

Parameters

Return Value

This hook does not return anything.

Example

tsx
```tsx
function Modal() {
  useBodyScrollLock();
  return <div className="modal">Modal content</div>;
}

Released under the MIT License.