JSFiddle - React, Tailwind, and code Playground
by eget teteete
JavaScript
let obs;
const ss = fetch('https://api.exchangerate.host/latest')
.then(res => res.json())
.then(data => {
obs = data.rates;
for (let key in obs) {
console.log(key + ' ' + obs[key]);
}
})