Skip to content

Instantly share code, notes, and snippets.

@zonzujiro
Created February 2, 2019 11:06
Show Gist options
  • Save zonzujiro/b237503d75858fc99affac685573f6a3 to your computer and use it in GitHub Desktop.
Save zonzujiro/b237503d75858fc99affac685573f6a3 to your computer and use it in GitHub Desktop.
const getData = url =>
fetch(url).then(res => {
if (res.ok) {
return res.json();
}
throw new Error(res.statusText);
});
export const fetchPeople = () =>
getData('https://swapi.co/api/people/').then(({ results }) => results);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment