import { useCursorPosition } from '@ttrmz/react-utils'const Example = () => {
const { x, y } = useCursorPosition()
return (
<div>
<span>x position : {x}</span>
<span>y position : {y}</span>
</div>
)
}| Key | Type |
|---|---|
| x | Number |
| y | Number |