JSFiddle - React, Tailwind, and code Playground

HTML

<div id="area">
<img src="http://s4ty-testarea.s4.ohost.de/jQuery-board/images/001.jpg" height="100px"/>
</div>

CSS

#area {
    margin: 25px;
    width: 600px;
    height: 400px;
    border: 1px solid red;
    overflow: hidden;
}

#area img:hover{
    cursor: move;
}

JavaScript

$(function (){
    
    var img = $('#area').find('img');
    
    img.draggable({
        containment: 'parent'
    });
    
})