JSFiddle - React, Tailwind, and code Playground

HTML

<div id="parent">
   <div id="child">
     Im a child
   </div>
</div>

CSS

#parent
{
    background-color: red;
    height: 400px;
    width: 400px;
}

#child
{
    background-color: white;
    height: 200px;
    width: 200px;
}

JavaScript

$('#parent').draggable({ cancel : '#child'});