local-weather/components/Temperature.tsx

16 lines
469 B
TypeScript
Raw Normal View History

import { TempInfo } from "@/types/types";
export default function Temperature(props: {tempInfo:TempInfo}) {
const kelvin = 273.15;
const tempInfo = props.tempInfo;
const fullTemp = tempInfo.temp - kelvin;
const temperature = fullTemp.toFixed(2);
const fullFeels = tempInfo.feels_like - kelvin;
const feelsLike = fullFeels.toFixed(2);
return (
<p>The temperature right now is {temperature}°C and feels like {feelsLike}°C</p>
)
}