JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container"></div>

CSS

.container{

  width:50%;
  background-color:red;
  height:200px;
}

JavaScript

var container = document.getElementsByClassName("container")[0];
container.addEventListener("resize",function(){console.log("resizing")});