Skip to content

Instantly share code, notes, and snippets.

@coryhouse
Created July 6, 2020 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coryhouse/b9acbf8469515c5097f55380d153081e to your computer and use it in GitHub Desktop.
Save coryhouse/b9acbf8469515c5097f55380d153081e to your computer and use it in GitHub Desktop.
export function getUsers() {
return fetch(`${process.env.REACT_APP_API_BASE_URL}users`).then(response =>
response.json()
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment