Skip to content

Instantly share code, notes, and snippets.

@Dromediansk
Created December 15, 2019 17:35
Show Gist options
  • Select an option

  • Save Dromediansk/73fc083d2461a6f13114a2711b5b924c to your computer and use it in GitHub Desktop.

Select an option

Save Dromediansk/73fc083d2461a6f13114a2711b5b924c to your computer and use it in GitHub Desktop.
Call all data of countries
export const getAllCountries = async () => {
try {
const response = await fetch(`https://restcountries.eu/rest/v2/all`);
const responseCountries = await response.json();
return responseCountries;
} catch (err) {
console.log(err);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment