JSFiddle - React, Tailwind, and code Playground
HTML
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<body class="body-container">
<div class="main-container">
<img class="img-container" draggable="true" src="http://icons.iconarchive.com/icons/noctuline/wall-e/256/Wall-E-icon.png">
</div>
</body>
CSS
.img-container{
cursor:move;
}
.main-container{
width: 50%;
height: 400px;
background-color: #33ADAD;
}
.body-container{
width: 1024px;
height: 100%;
background-color: #3399FF;
}
JavaScript
$(function() {
$(".img-container").draggable({ containment: "parent" });
});