JSFiddle - React, Tailwind, and code Playground
HTML
<div class="flexbox">
<div class="flexboxItem">Div1</div>
What happens if draging here?
<div class="flexboxItem">Div2</div>
</div>
CSS
.flexbox {
display: flex;
}
.flexboxItem {
background: yellow;
}