# `useScrolling` React sensor hook that keeps track of whether the user is scrolling or not. ## Usage ```jsx import { useScrolling } from "react-use"; const Demo = () => { const scrollRef = React.useRef(null); const scrolling = useScrolling(scrollRef); return (
{
{scrolling ? "Scrolling" : "Not scrolling"}
}
); }; ``` ## Reference ```ts useScrolling(ref: RefObject); ```