JSFiddle - React, Tailwind, and code Playground
HTML
<ol id="list">
</ol>
JavaScript
$.ajax({
url: "https://api.myjson.com/bins/w05x",
dataType: "json",
success: function(data) {
console.log(data)
$.each(data.events, function(index, event) {
$("#list").append($("<li/>").text(event.name+" @ "+event.occurs_at));
});
}
});