JSFiddle - React, Tailwind, and code Playground
by brigand
HTML
<pre id="dataDisplay"></pre>
JavaScript
fetch("https://www.json-generator.com/api/json/get/bUoAdhrYrS?indent=2")
.then(res=> res.json())
.then(data => document.getElementById("dataDisplay").textContent = JSON.stringify(data.countries));