Skip to content

Instantly share code, notes, and snippets.

@DennyScott
Created March 7, 2020 08:48
Show Gist options
  • Save DennyScott/616a3234df2bf139a8d7fe9ccc657639 to your computer and use it in GitHub Desktop.
Save DennyScott/616a3234df2bf139a8d7fe9ccc657639 to your computer and use it in GitHub Desktop.
function ExampleComponent({url}) {
const fetchData = useCallback(() => {
// fetch call here
}, [url]);
useEffect(() => fetchData(), [fetchData]);
return (<div></div>);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment