git.fiddlerwoaroof.com
Raw Blame History
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Document</title>
    <style>
      * {
        box-sizing: border-box;
      }
      html,
      body {
        margin: 0;
        padding: 0;
      }
      ul {
          margin: 0;
      }
      #root {
        height: 100vh;
      }
      main {
        display: flex;
        height: 100%;
      }
      main > * {
        width: 50%;
        max-height: 100%;
        overflow-y: auto;
      }
    </style>
  </head>
  <body>
    <div id="root"></div>
    <script src="//cdn.jsdelivr.net/npm/ramda@latest/dist/ramda.min.js"></script>
    <script>
      // HACK(keanulee): The Redux package assumes `process` exists - mock it here before
      // the module is loaded.
      window.process = {
        env: {
          NODE_ENV: "production",
        },
      };
    </script>
    <script src="/public/main.js" type="module"></script>
  </body>
</html>