import { WeathersearchForm } from "@/components/weather/WeatherSearchForm"; import { WeatherDisplay } from "@/components/weather/WeatherDisplay"; import { WeatherDetailsGrid } from "@/components/weather/WeatherDetailsCrid"; import { useWeatherStore } from "@/store/weatherStore"; import Cloud from "../../../assets/cloud.svg"; export function WeatherCard() { const { currentWeather } = useWeatherStore(); return (
{currentWeather ? (
) : (

暂无天气数据

请搜索城市查看实时天气信息

)}
); }