JSFiddle - React, Tailwind, and code Playground
JavaScript
fetch('https://wmt-laboratoria.herokuapp.com/tweets/search?q=felizlunes')
.then(res => res.json())
.then(data => {
for (const prop in data) {
console.log(`data.${prop} = ${data[prop].text}`);
}
})