662 gün önce API'dan veri çekiyorum ancak ilk başta veri boş geliyor daha sonra veri geliyor
sorusunu cevapladı.
Cevap için çok teşekkür ederim ancak veri gelmiyor yükleniyor yazısı kalıyor
1093 gün önce Bilgi consolda gözüküyor ancak HTML'de gözükmüyor
sorusunu cevapladı.
const [countries, setCountries] = useState([]);
useEffect(() => {
fetch("https://api.covid19api.com/summary")
.then((res) => res.json())
.then((data) => {
setCountries(data.Countries);
});
}, []);
console.log(countries);
countries.map((country) => {
console.log(country.Country);
});
return (
<div>
{countries.map((country) => {
return(
<div className="">
<h1>{country.Country}</h1>
</div>;
)
})}
</div>
Sorunu map fonksiyonu içine divden hemen önce return ekleyerek çözdüm.