JSFiddle - React, Tailwind, and code Playground
JavaScript
fetch("https://learnwebcode.github.io/json-example/animals-1.json")
.then((response) => response.json())
.then((json) => {
json.forEach((animal) => {
console.log(animal);
});
});