import { type Stats } from "../lib/getStats"; import StatCard from "./StatCard"; interface StatsGridProps { stats: Stats | null; } export default function StatsGrid({ stats }: StatsGridProps) { return (
80 ? "Running hot" : stats.temperature > 60 ? "Warm" : "Cool" : "" } delay={180} />
); }