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 (

The temperature right now is {temperature}°C and feels like {feelsLike}°C

) }