JSFiddle - React, Tailwind, and code Playground
HTML
<textarea class="resizable"></textarea>
<br /><br />
<div id="blob"></div>
CSS
.ui-resizable-se {
bottom: 17px;
}
#blob {
height: 200px;
width: 100px;
background-color: #ff0044;
}
JavaScript
$(document).ready(function() {
$(".resizable").resizable({
handles: "se"
});
$("#blob").resizable();
});