JSFiddle - React, Tailwind, and code Playground
HTML
<div id="design">
<img width="150px" src="http://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" id="imgs" class="ui-widget-content">
</div>
CSS
#design {
height: 500px;
width: 500px;
background: black;
}
JavaScript
$('img').resizable({containment: "#design"});
$('img').parent().draggable({containment: "#design"});