JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<div id="resizable" class="ui-widget-content">
  <h3 class="ui-widget-header">Resizable</h3>
</div>

CSS

#resizable {
  width: 150px;
  height: 150px;
  min-width:100px;
  min-height: 50px;
  max-width: 300px;
  max-height: 300px;
  background: url(https://lorempixel.com/300/300/city/) no-repeat;
  background-size: 300px 300px;
}
.ui-resizable-se { background-color: red; }
#resizable h3 { text-align: center; margin: 0; }

JavaScript

$(function() {
    $( "#resizable" ).resizable();
});