Skip to content

Instantly share code, notes, and snippets.

@akellbl4
Last active March 7, 2021 10:02
Show Gist options
  • Save akellbl4/86177880aadf6257ed24a7f86ac3c3ce to your computer and use it in GitHub Desktop.
Save akellbl4/86177880aadf6257ed24a7f86ac3c3ce to your computer and use it in GitHub Desktop.
const { PUBLIC_NEXT_API_URL } = process.env;
let citiesRequest;
export function fetchCities() {
if (!citiesRequest) {
citiesRequest = fetch(`${PUBLIC_NEXT_API_URL}/cities`);
}
return citiesRequest;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment