use-resizing
v2.1.7
Published
React Hook that triggers on window resize
Downloads
15
Readme
React Hook that triggers on window resize Example In your React component:
import useResize from "use-resizing"
function SizeInfo() {
const screenSize = useResize()
return <div>size = ({ screenSize.width }, { screenSize.height })</div>
}
Settings: debounceTime - number (default 100ms)
...
const screenSize = useResize({debounceTime:200})