import { TempInfo } from "@/types/types"; import { useContext } from "react"; import { WeatherContext } from "./WeatherNow"; export default function Temperature() { const { weather } = useContext(WeatherContext) const feels = weather.current.apparent_temperature; return (

{feels}°C

) }