Skip to content

Instantly share code, notes, and snippets.

@mfrachet
Created January 11, 2019 13:08
Show Gist options
  • Save mfrachet/eda3a65362f083c7bc92efbe8212cee0 to your computer and use it in GitHub Desktop.
Save mfrachet/eda3a65362f083c7bc92efbe8212cee0 to your computer and use it in GitHub Desktop.
react-cache-custom-fetch
export const Pokemon = () => {
const bulbasaur = customFetch("https://pokeapi.co/api/v2/pokemon/1/");
return <div>{bulbasaur.name}</div>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment