local-weather/components/HourlyCard/HourlyTemp.tsx

7 lines
165 B
TypeScript
Raw Permalink Normal View History

export default function HourlyTemp(props: {temperature: number;}) {
const feels = props.temperature;
return (
2024-05-10 17:23:02 +00:00
<p className="my-2">{feels}°C</p>
)
}