Skip to content

Instantly share code, notes, and snippets.

@adnaan
Last active November 2, 2016 04:58
Show Gist options
  • Save adnaan/130b14a7590f8c1a322fb23b55de38c7 to your computer and use it in GitHub Desktop.
Save adnaan/130b14a7590f8c1a322fb23b55de38c7 to your computer and use it in GitHub Desktop.
src/services.js
/*@flow*/
export async function getProducts() {
return fetch(`/api/products`).then(res => res.json())
}
export async function updateVote(id: { id: number }) {
return fetch('/api/products/vote/' + String(id)).then(res => res.json())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment