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