/** * WeatherCard.tsx - 统一的天气卡片组件 * 集成搜索表单、天气展示、搜索历史于一体 * * 学习要点: * - 直接使用 store,无需通过 props 传递 * - 组件更加独立和可复用 * - 减少 prop drilling */ import React, { useEffect } from 'react'; import { WeatherSearchForm } from './WeatherSearchForm'; import { WeatherDisplay } from './WeatherDisplay'; import { WeatherDetailsGrid } from './WeatherDetailsGrid'; import { useWeatherStore } from '@/store/weatherStore'; import {Cloud} from "lucide-react"; export function WeatherCard() { const { currentWeather } = useWeatherStore(); return (
请搜索城市查看实时天气信息