local-weather/components/DailyCard/DailyTemp.tsx
ChrQR 83b337db03
All checks were successful
Docker Build & Publish / Build Docker (push) Successful in 1m9s
Fixed for mobile?
2024-05-12 21:14:36 +02:00

7 lines
160 B
TypeScript

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