({ x, y })
| 7 | useEffect(() => { |
| 8 | |
| 9 | const onMouseMove = ({ x, y }) => { |
| 10 | // const coords = { x, y }; |
| 11 | setCoords({ x, y }) |
| 12 | } |
| 13 | |
| 14 | window.addEventListener( 'mousemove', onMouseMove ); |
| 15 |
nothing calls this directly
no outgoing calls
no test coverage detected