local-weather/components/DailyCard/DailyTemp.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

7 lines
164 B
TypeScript

export default function DailyTemp(props: {temperature: number;}) {
const feels = props.temperature;
return (
<p className="my-2">{feels}°C</p>
)
}