Skip to content

Instantly share code, notes, and snippets.

@cadd
Created January 4, 2022 11:46
Show Gist options
  • Save cadd/65db8d437b813bd582332c54d86fe1b1 to your computer and use it in GitHub Desktop.
Save cadd/65db8d437b813bd582332c54d86fe1b1 to your computer and use it in GitHub Desktop.
callBackendAPI = async () => {
const response = await fetch('/express_backend');
const body = await response.json();
if (response.status !== 200) {
throw Error(body.message)
}
return body;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment