Skip to content

Instantly share code, notes, and snippets.

@matheus-rossi
Created September 25, 2017 19:10
Show Gist options
  • Save matheus-rossi/e07fafa0b46401058f39664a6ff183c1 to your computer and use it in GitHub Desktop.
Save matheus-rossi/e07fafa0b46401058f39664a6ff183c1 to your computer and use it in GitHub Desktop.
const getExchangeRate = (from, to) => {
return axios.get(`http://api.fixer.io/latest?base=${from}`).then((res)=> {
return res.data.rates[to]
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment