import { useWeatherStore } from "@/store/weatherStore"; import { Cloud } from "lucide-react"; export function WeatherCard(){ const{ currentWeather} = useWeatherStore(); //样式待修改 return (
{currentWeather ? (
) :(

暂无天气数据

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

)}
); }