mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
430 B
430 B
useScroll
React sensor hook that re-renders when the scroll position in a DOM element changes.
Usage
import {useScroll} from 'react-use';
const Demo = () => {
const scrollRef = React.useRef(null);
const {x, y} = useScroll(scrollRef);
return (
<div ref={scrollRef}>
<div>x: {x}</div>
<div>y: {y}</div>
</div>
);
};
Reference
useScroll(ref: RefObject<HTMLElement>);