JSFiddle - React, Tailwind, and code Playground
JavaScript
function myFetch(url) {
return new Promise((resolve, reject) => {
});
}
const url = 'https://raw.githubusercontent.com/oasis-open/cti-stix-visualization/master/test.json';
myFetch(url)
.then(response => response.json())
.then(console.log);