JSFiddle - React, Tailwind, and code Playground

by ChrisStanyon

HTML

<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/dark-hive/jquery-ui.css">
<div id="container">
  <div>One</div>
  <div>Two</div>
  <div>Three</div>
</div>

CSS

div { border: 1px solid green; margin: 5px;}

JavaScript

$( "#container" ).sortable({
	cursor: 'move'
});