import { useState } from 'react'; import { Button, StyleSheet, Text, View } from 'react-native'; import { City, Weather, CITIES_DATA, FAVORITE_CITY_DATA, getCurrentWeather } from '../../data/stub'; export default function AddCity() { const [meteo, setMeteo] = useState("Meteo"); const [city, setCity] = useState(new City("Marseille", 48.856614, 2.3522219)); return ( {city.name} {city.latitude} {city.longitude}