Re-renders on window scroll.
state: Object
x: Number
: Horizontal locationy: Number
: Vertical location
import { useWindowScroll } from "react-recipes";
const App = () => {
const { x, y } = useWindowScroll();
return (
<div>
<div>x: {x}</div>
<div>y: {y}</div>
</div>
);
};