import { IonCard, IonCardContent, IonGrid, IonRow, IonText, IonCardTitle } from '@ionic/react'; import { WeatherProperty } from './WeatherProperty'; export const CurrentWeather = ({ currentWeather }: { currentWeather: any }) => (

{currentWeather.location.region},{' '} {currentWeather.location.country}

condition

{currentWeather.current.condition.text}

{new Date(currentWeather.location.localtime).toDateString()}

{currentWeather.current.temp_c}℃
);