dotori-hooksuseGeolocationOn this pageuseGeolocation you can get current geolocation Features get current geolocation when DOM rendered. Types const useGeolocation: () => { geolocation: Geolocation | null; error: string | null;}; Example const App = () => { const { geolocation: { latitude, longitude }, } = useGeolocation(); // ...};