Skip to content

Instantly share code, notes, and snippets.

@simicd
Last active August 16, 2020 18:36
Show Gist options
  • Save simicd/dfe42d237348ea718673103de6bcad21 to your computer and use it in GitHub Desktop.
Save simicd/dfe42d237348ea718673103de6bcad21 to your computer and use it in GitHub Desktop.
// useFetch.ts
// ..
export const useFetch = ({ url, init }: RequestProps) => {
// Response state
// ..
useEffect(() => {
// ...
}, [JSON.stringify(url), JSON.stringify(init)]);
return data;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment