JSFiddle - React, Tailwind, and code Playground

by Ronny

HTML

<div id="dragwrap">
    <div id="drag">Drag</div>
</div>

<div id="drop">drop</div>

CSS

#dragwrap {overflow: auto;}
#drop {width: 500px; height: 300px;}

JavaScript

$('#drop').hover(function(){
    $(this).css('background', 'red');
}, function(){
    $(this).css('background', 'white');
});