jaredLunde / react-hook

↩ Strongly typed, concurrent mode-safe React hooks
https://npmjs.com/org/react-hook
MIT License
1.44k stars 97 forks source link

[resize-observer] Fixes #298 Provide optional ResizeObserverOptions #299

Open noahlaux opened 1 year ago

noahlaux commented 1 year ago

This PR provides a way to provide options to the underlying ResizeObserver.

Usage

useResizeObserver(target, (entry) => setSize(entry.contentRect), { box: ['device-pixel-content-box']} );

Closes #298