JSFiddle - React, Tailwind, and code Playground
by icb0005
HTML
<!doctype html>
<html lang="en">
<body>
<form role="form" onSubmit="moveToNewYork()">
<button type="submit" class="btn btn-primary">Move to New York</button></form>
<form role="form" onSubmit="moveToDallas()">
<button type="submit" class="btn btn-primary">Move to Dallas</button></form>
<form role="form" onSubmit="addPerson()">
<button type="submit" class="btn btn-primary">Add Person</button></form>
<BR>
<h2>Dallas</h2>
<div align="left" class="table-responsive">
<table class="table table-striped table-sm table-hover w-75 p-3">
<thead>
<tr align="center">
<th>ID</th>
<th>Name</th>
</tr>
</thead>
<tbody id="dallas">
</tbody>
</table>
</div>
<br>
<h2>New York</h2>
<div align="left" class="table-responsive">
<table class="table table-striped table-sm table-hover">
<thead>
<tr align="center">
<th>ID</th>
<th>Name</th>
</tr>
</thead>
<tbody id="newYork">
</tbody>
</table>
</div>
</body>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://unpkg.com/dexie@latest/dist/dexie.js"></script>
<!-- Icons -->
<script...