import { MapPin, Thermometer } from "lucide-react"; export function WeatherDisplay2(){ const {currentWeather} = useWeatherStore(); if(!currentWeather) return null; return(

{currentWeather.location.name}

{currentWeather.location.country}
{formatTemperature(currentWeather.current.temperature)} °C

{currentWeather.current.weather_descriptions[0]}

体感{formatTemperature(currentWeather.current.feelslike)}°C
) }