JSFiddle - React, Tailwind, and code Playground

HTML

<div id="drag" class="ui-draggable sleep ui-resizable" style="position: absolute; left: 10px; top: 17px; height: 50px; width: 50px;">
</div>

CSS

.sleep
{
    border: 1px solid Gray;
    background-color: White;
}

#drag img
{
    width:100%;
        height:100%;
}

JavaScript

$(document).ready(function()
{
    $(".sleep").draggable();
    $(".sleep").resizable();
});