Your task is to link the data you have fetched to the CountryCard
. The user should see the data of the country they searched for appear on the screen.
countryData
state within fetchCountryData
countryData
to CountryCard
Currently, you simply console.log the data you want. Let’s instead store this data in our countryData
state. This will be useful in letting our app rerender with the correct details displayed!
Decide on an appropriate data structure for your countryData
state. Now, instead of console.logging within fetchCountryData
, update this state with the appropriate details.
We can’t tangibly determine if you have passed apart from looking at your code. The visible effects will come in the next part!
Currently we pass some filler text down to CountryCard
. Your task is to pass in the appropriate data from countryData
. This should then display on your screen.
You pass if: