| 4 | import { useEffect, useRef } from 'react' |
| 5 | |
| 6 | interface IpGlobeProps { |
| 7 | lat: number | null |
| 8 | lon: number | null |
| 9 | city: string | null |
| 10 | } |
| 11 | |
| 12 | const EASING_FACTOR = 0.05 |
| 13 | const STOP_THRESHOLD = 0.0001 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…