JSFiddle - React, Tailwind, and code Playground

by TimothyV

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.20/css/dataTables.bootstrap.min.css" />

<script type="text/javascript" src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/1.10.20/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/1.10.20/js/dataTables.bootstrap.min.js"></script>

<script type="text/javascript">
    $(document).ready(function() {
        $('#example').DataTable();
    } );
</script>

<table id="example" class="table table-striped table-bordered" style="width:100%">
    <thead>
	    <tr>
		    <th>Name</th>
		    <th>Position</th>
	    </tr>
    </thead>
    <tbody>
	    <tr>
		    <td>Tiger Nixon</td>
		    <td>System Architect</td>
	    </tr>
	    <tr>
		    <td>Garrett Winters</td>
		    <td>Accountant</td>
	    </tr>
    </tbody>
</table>