✔️ 날씨 불러오기expo install expo-location const getWeather = async () => { const {granted} = await Location.requestForegroundPermissionsAsync(); if (!granted) { setOk(false); } const { coords: {latitude, longitude}, } = await Location.getCurrentPositionAsync({accuracy: 5}) const location = await Location.reverseGeocodeAsync({latitude,..