Weather/app/components/WeatherDetailsGird.tsx

8 lines
145 B
TypeScript

interface WeatherDetailsGridProps {
icon: React.ReactNode;
label: string;
value: string;
subtitle?: string;
}
function WeatherInfoItem()