JSFiddle - React, Tailwind, and code Playground

by amindunited

JavaScript

//fetch('https://cat-fact.herokuapp.com/facts', {
//fetch(`http://www.amiiboapi.com/api/amiibo/?name=mario`, {
fetch(`http://api.tvmaze.com/shows?page=1`)
.then(function(response) {
  return response.json();
})
.then(function(myJson) {
  console.log('?', JSON.stringify(myJson));
});