JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="div-inner">Drag me!</div>
</div>
CSS
.container { background-color: red; position:relative; width:7200px; height:400px; overflow:hidden; }
.div-inner { cursor:e-resize; width: 100px;}
JavaScript
$(".div-inner").draggable({ axis: 'x', containment: [0, 0, 100, 0]});