local-weather/components/HourlyCard/HourlyCard.tsx
christian e52b362512
Some checks failed
Docker Build & Publish / Build Docker (push) Failing after 52s
changed to weekly from hourly
2024-05-12 07:06:44 +02:00

17 lines
614 B
TypeScript

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 (
<div className="m-2 text-center shadow-md border-slate-200 border-2 rounded">
<WeatherIcon weatherCode={weatherCode}/>
<HourlyTemp temperature={temperature} />
<HourlyTime time={time} />
</div>
)
};