JSFiddle - React, Tailwind, and code Playground
HTML
<div id="drag-from">
<img src="http://dummyimage.com/200x200/000/fff" />
</div>
CSS
#drag-from img { max-width: 100px; }
JavaScript
$('#drag-from').draggable({ helper: 'clone' })
<div id="drag-from">
<img src="http://dummyimage.com/200x200/000/fff" />
</div>
#drag-from img { max-width: 100px; }
$('#drag-from').draggable({ helper: 'clone' })