JSFiddle - React, Tailwind, and code Playground

by Eric Thomson

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/js/bootstrap.min.js"></script>
<h2>Members</h2>
<table class = "table table-responsive">
  <thead>
    <tr>
      <th>Name</th>
      <th>Join Date</th>
      <th>Has played</th>
    </tr>
  </thead>
  <tbody>
      <tr>
        <td>Funky</td>
        <td>April 20, 2003</td>
        <td>Yes</td>
      </tr>
        
      <tr>
        <td>Funky</td>
        <td>April 20, 2003</td>
        <td>Yes</td>     
      </tr>
  </tbody>
</table>