JSFiddle - React, Tailwind, and code Playground
HTML
<script src="//cdn.datatables.net/1.10.5/js/jquery.dataTables.min.js"></script>
<link rel="stylesheet" href="//cdn.datatables.net/1.10.5/css/jquery.dataTables.css">
<body>
<div style="width: 90%; height: 450px;">
<table id="laboratoryTable" class="display compact" width="100%">
<thead>
<tr>
<th></th>
<th>Test</th>
<th>Name</th>
<th>Address</th>
<th>Phone</th>
<th>Fax</th>
</tr>
</thead>
<tbody>
<tr><td>+</td><td>1</td><td>Quest</td><td>229 Franklin Rd, Brentwood, NY 37024</td><td>(615)333-3333</td><td>(615)444-4444</td></tr>
</tbody>
</table>
</div>
</body>
<script>
$(document).ready(function() {
$('#laboratoryTable').dataTable( {
"destroy": true,
"lengthChange": false,
"scrollY": "350px",
"paging": false
} )
} )
</script>