Skip to content

Instantly share code, notes, and snippets.

@SahanAmarsha
Created May 25, 2020 06:58
Show Gist options
  • Save SahanAmarsha/892f08fd5d0c7969729219526910caab to your computer and use it in GitHub Desktop.
Save SahanAmarsha/892f08fd5d0c7969729219526910caab to your computer and use it in GitHub Desktop.
Fetching data using environment variables in React front-end
const response = await fetch(
`${process.env.REACT_APP_BACKEND_URL}/mern/`,
{
method: 'GET',
headers:{
'Content-Type': 'application/json'
},
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment