@gitgw/use-scroll
Version:
React Hook to get X/Y coordinates of current position of the scroll.
30 lines (23 loc) • 599 B
Markdown
React Hook to get X/Y coordinates of current position of the scroll.
```npm i @gitgw/use-scroll```
```yarn add @gitgw/use-scroll```
```javascript
import React from "react";
import useScroll from "@gitgw/use-scroll";
function App() {
const {x, y} = useScroll();
console.log(x, y);
return (
<div className="App"></div>
);
}
```
Return value|Type|Description|Default value|
|-|-|-|-|
|Coords|Object|An object containing the x/y coordinates of the current scroll position|{x:0, y:0}