JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="https://cdn.datatables.net/1.10.8/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/rowreorder/1.1.0/js/dataTables.rowReorder.min.js"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/rowreorder/1.1.0/css/rowReorder.dataTables.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.10/css/jquery.dataTables.min.css">
<table>
  <thead>
    <th>Col 1</th>
    <th>Col 2</th>
    <th>Col 3</th>
  </thead>
  <tbody>
    <tr id="1">
      <td>AAAAA</td>
      <td>BBBBB</td>
      <td>CCCCC</td>
    </tr>
    <tr id="2">
      <td>DDDDD</td>
      <td>EEEEE</td>
      <td>FFFFF</td>
    </tr>
  </tbody>
  <tfoot></tfoot>
</table>

JavaScript

$(function(){
  var table = $("table").DataTable({
  	ordering: false,
  	"rowReorder":{
    	dataSrc: 0
    }
 	});
 })