mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
285 B
285 B
useWindowScroll
React sensor hook that re-renders on window scroll.
Usage
import {useWindowScroll} from 'react-use';
const Demo = () => {
const {x, y} = useWindowScroll();
return (
<div>
<div>x: {x}</div>
<div>y: {y}</div>
</div>
);
};