JSFiddle - React, Tailwind, and code Playground

by sonylnagale

JavaScript

// 

fetch('https://swapi.co/api/planets/1/')
  .then((response) => {
    return response.json();
  })
  .then((response) => {
  	console.log(response);
  })
  .catch((err) => {
  	console.log(err);
  })
  .finally(() => {
  	console.log('done');
  })