JSFiddle - React, Tailwind, and code Playground
HTML
<div id="resizable" >
<h3 >Resizable</h3>
</div>
CSS
#resizable { background-position: top left; width: 150px; height: 150px; border:2px solid black; cursor: s-resize;}
JavaScript
$(function() {
$( "#resizable" ).resizable();
});