JSFiddle - React, Tailwind, and code Playground
by riazxrazor
HTML
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<div id="draggable" class="ui-widget-content">
<p>Drag me around</p>
</div>
CSS
#draggable { width: 150px; height: 150px; padding: 0.5em; }
JavaScript
$( function() {
$( "#draggable" ).draggable();
} );