JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://code.jquery.com/ui/jquery-ui-git.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/jquery-ui-git.css">
<div id="resizable"></div>
CSS
#resizable {
position: fixed;
top: 5px;
right: 100px;
width: 200px;
height: 100px;
border: 1px solid;
}
JavaScript
$("#resizable").resizable({
handles: "e, w"
});