JSFiddle - React, Tailwind, and code Playground

by jscheel

HTML

<script>
    var openerExists = window.opener != null;
    var p = document.createElement('p');
    p.innerHTML = openerExists.toString();
    document.body.appendChild(p);
  </script>