Skip to content

Instantly share code, notes, and snippets.

@matheus-rossi
Created September 25, 2017 19:11
Show Gist options
  • Save matheus-rossi/6cc9b10ca5c0b9ed97f57ebe8f2de052 to your computer and use it in GitHub Desktop.
Save matheus-rossi/6cc9b10ca5c0b9ed97f57ebe8f2de052 to your computer and use it in GitHub Desktop.
const getCountries = (currencyCode) => {
return axios.get(`https://restcountries.eu/rest/v2/currency/${currencyCode}`).then((res)=> {
return res.data.map((country)=> country.name)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment