import { HourlyCardPropType } from "@/types/types" import WeatherIcon from "./WeatherIcon" import HourlyTemp from "./HourlyTemp" export default function HourlyCard(props: HourlyCardPropType) { const weatherCode = props.weatherCode const temperature = props.temperature return (
) };