JSFiddle - React, Tailwind, and code Playground

HTML

<ol id="sort">
    <li>Item 1</li>
    <li>Item 1</li>
    <li>Item 1</li>
    <li>Item 1</li>
</ol>

CSS

li {
    padding: 2px 5px;
    border: 1px solid black;
    margin-bottom: 5px;
}

JavaScript

$('#sort').sortable({
    start: function() {
        // Some checking code here
        $(this).sortable('cancel');
    }
});