JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/4.8.1/pixi.min.js"></script>

JavaScript

/* global PIXI */


// Create a Pixi Application
const app = new PIXI.Application({
  width: 128,
  height: 128,
});

// Add the canvas that Pixi automatically created for you to the HTML document
document.body.appendChild(app.view);