import { ScatterChart, Scatter, XAxis, YAxis, Tooltip, ResponsiveContainer } from "recharts"; import WeatherHistory from '@/hooks/weather-history' function TemperaturePlotChart({data} : {data: WeatherHistory[] | undefined}){ if (!data || data.length === 0) { return
No data available
} return (
) } export default TemperaturePlotChart