JSFiddle - React, Tailwind, and code Playground

by Craig Martin

HTML

<script type="module" src="https://unpkg.com/x-frame-bypass"></script>

JavaScript

fetch('http://example.com/movies.json')
  .then((response) => {
    return response.json();
  })
  .then((myJson) => {
    console.log(myJson);
  });