import { HourlyCardPropType } from "@/types/types" import WeatherIcon from "./WeatherIcon" import HourlyTemp from "./HourlyTemp" export default function HourlyCard(props: HourlyCardPropType) { const weatherCode = props.weather.weather_code[props.timeIndex] const temperature = props.weather.apparent_temperature[props.timeIndex] return ( <> ) };