JSFiddle - React, Tailwind, and code Playground
HTML
<div id='output'></div>
JavaScript
const output = document.getElementById('output');
fetch('https://static-assets.mapbox.com/map-design/style-components/basic-v1/0.4.1/index.json')
.then(res => res.json())
.then(res => {
output.textContent = JSON.stringify(res, null, 2);
});