JSFiddle - React, Tailwind, and code Playground
by jmpp77
HTML
<script src="https://rawgit.com/camsong/fetch-jsonp/master/build/fetch-jsonp.js"></script>
JavaScript
fetchJsonp('https://api.deezer.com/search', {
params: {
q: 'eminem',
output: 'jsonp',
jsonpCallback: 'callback'
}
})
.then(res => res.json())
.then(console.log)