JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="//cdn.datatables.net/1.10.11/css/jquery.dataTables.min.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="//cdn.datatables.net/1.10.11/js/jquery.dataTables.min.js"></script>
<table id="example">
<thead>
<tr role="row" class="heading">
<th>
Id#
</th>
<th>
Original title (alternative titles)
</th>
<th>
Year of production
</th>
<th>
Country
</th>
<th>
Actions
</th>
</tr>
</thead>
<tbody>
<tr><td>1</td><td>1</td><td>1</td><td>1</td><td>delete</td></tr>
<tr><td>2</td><td>2</td><td>4</td><td>5</td><td>delete</td></tr>
</tbody>
</table>
JavaScript
$(document).ready(function() {
$('#example').dataTable({
"order": [],
"aoColumnDefs": [
{ 'bSortable': false, 'aTargets': [ 4 ] }
],
});
});