JSFiddle - React, Tailwind, and code Playground

by blparker

HTML

<div class="outer">
    <div class="inner"></div>
</div>

CSS

.outer {
    background: #eee;
    width: 500px;
    height: 400px;
    border: 1px solid #aaa;
}
.inner {
    height: 100px;
    width: 100px;
    background-color: orange;
}

JavaScript

$('.inner').draggable({ containment : 'parent' });