Your task is to make the SearchBar functional. The user should be able to type in a country name, hit enter (or click a button) and the country’s details should be console.logged to your browser.
fetchCountryData
functionfetchCountryData
actually fetch the country’s dataNote, the following link contains some old React code but it should be fairly relevant.
Inside SearchBar.js
code up an input field which allows the user to type in text. When the user hits “enter”, console.log the text inside the input field.
You pass if:
App.js
contains a function fetchCountryData
. Later, we will make this function query an endpoint. For now, our goal is to connect the API.
fetchCountryData
has been passed down to SearchBar.js