Skip to content

Instantly share code, notes, and snippets.

@Chester97
Created February 4, 2021 11:32
Show Gist options
  • Save Chester97/6506f0765f9121a4af257b4ef3171744 to your computer and use it in GitHub Desktop.
Save Chester97/6506f0765f9121a4af257b4ef3171744 to your computer and use it in GitHub Desktop.
useEffect(() => {
const fetchData = async () => {
const result = await axios(
'someApi',
);
setData(result.data);
};
fetchData();
}, []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment