JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container"></div>
    <script src="http://d3lp1msu2r81bx.cloudfront.net/kjs/js/lib/kinetic-v5.0.2.min.js"></script>

CSS

#container {
    background-color: red;
}

JavaScript

var stage = new Kinetic.Stage({
        container: 'container',
        width: 578,
        height: 200
      });
      var layer = new Kinetic.Layer();

      var imageObj = new Image();
      imageObj.onload = function() {
        var yoda = new Kinetic.Image({
          x: 200,
          y: 50,
          image: imageObj,
          width: 106,
          height: 118
        });

        // add the shape to the layer
        layer.add(yoda);

        // add the layer to the stage
        stage.add(layer);
          
        stage.size({
          width: 100,
          height: 200
        });  
          
        layer.draw();  
        stage.draw();  
      };
      imageObj.src = 'http://www.html5canvastutorials.com/demos/assets/yoda.jpg';