JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.13/semantic.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.13/semantic.min.js"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.15/css/jquery.dataTables.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/responsive/2.1.1/css/responsive.dataTables.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/responsive/2.1.1/js/dataTables.responsive.min.js"></script>
<body>
<div class="ui container">
<table  data-order='[[ 0, "desc" ]]' id="myTable2" class="cell-border" cellspacing="0" width="100%" style="display: none;">
			<thead>
				<tr>
					<th data-priority="1">Date</th>
					<th data-priority="3">Location</th>
					<th data-priority="2">Gallons</th>
					<th data-priority="2">Odometer</th>
					<th data-priority="2">PPG</th>
					<th data-priority="1">Total price</th>
					<th data-priority="3">Miles driven</th>
					<th data-priority="1">MPG</th>
					<th data-priority="3">Days SLF</th>
					<th data-priority="4">Notes</th>
					<th data-priority="2">Edit</th>
					<th data-priority="2">Delete</th>
				</tr>
			</thead>
			<tbody><tr>
				<td>2013-04-20</td>
				<td></td>
				<td>4.999</td>
				<td>106339</td>
				<td>3.409</td>
				<td>17.04</td>
				<td>0</td>
				<td>21272.1</td>
				<td>29</td>
				<td></td>
				<td>
					<form action="Edit.php" method="post">
						<input type="hidden" name="ID" value="1"/>
						<input type="submit" name="submit" value="Edit"/>
					</form>
				</td>
				<td>
					<form action="Delete.php" method="post">
						<input type="hidden" name="ID" value="1"/>
						<input type="submit" name="submit"...

JavaScript

$(document).ready( function () {
    $('#myTable2').DataTable({
	responsive: true
	});
	$('#myTable2').show();
  $(window).trigger('resize');
} );