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 (
请搜索城市查看实时天气信息