JSFiddle - React, Tailwind, and code Playground
by UlyssesZhan
HTML
<script src="https://pixijs.download/release/pixi.min.js"></script>
JavaScript
(async () => {
const url = URL.createObjectURL(await fetch('https://i.imgur.com/7XS7NLZ.jpeg').then(r => r.blob()));
const texture = await PIXI.Assets.load(url);
})();