JSFiddle - React, Tailwind, and code Playground

by kiokotzu

HTML

<script src="http://code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<div class="wrapper"></div>

CSS

.draggable{
    width:100px;
    height:100px;
    background:blue;
}

JavaScript

$(function() {
    $('.wrapper').append('<div class="draggable"></div>')
    $( ".draggable" ).draggable();
  });