JSFiddle - React, Tailwind, and code Playground

by colorkid

JavaScript

fetch('https://swapi.co/api/films/1/')
  .then(response => {
    response.json()
    .then((res) => {
    	console.log(res);
    });
  });