JSFiddle - React, Tailwind, and code Playground
HTML
<script src="//code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="//cdn.datatables.net/1.10.6/js/jquery.dataTables.min.js"></script>
<link rel="stylesheet" href="//cdn.datatables.net/1.10.6/css/jquery.dataTables.min.css">
<body>
<div class="container">
<table id="example">
<thead>
<tr>
<th>Rendering engine</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lenovo Exclusive,</td>
</tr>
<tr>
<td>PC Express,</td>
</tr>
<tr>
<td>Store 1, Branch b</td>
</tr>
<tr>
<td>Store</td>
</tr>
<tr>
<td>store x</td>
</tr>
<tr>
<td>store y</td>
</tr>
</tbody>
</table>
</div>
</body>
JavaScript
$(document).ready(function () {
$('#example').dataTable({
/* "sPaginationType": "full_numbers" */
});
});