JSFiddle - React, Tailwind, and code Playground

by Abdul Ahmad

JavaScript

fetch('http://pokeapi.co/api/v2/pokemon/1')  
  .then(function(data) {
  	return response.json()
  })  
  .then(function(data) {  
    console.log('Request succeeded with JSON response', data);  
  }).catch(function(error) {  
    console.log('Request failed', error);  
  });