JSFiddle - React, Tailwind, and code Playground
HTML
<section class="sortable">
<div id="entry1">Apple</div>
<div id="entry2">Orange</div>
<div id="entr3y3">Pear</div>
</section>
<section class="sortable">
<div id="entry1">Apple</div>
<div id="entry2">Orange</div>
<div id="entr3y3">Pear</div>
</section>
JavaScript
$(document).ready(function(){
$('.sortable').sortable();
});