JSFiddle - React, Tailwind, and code Playground
HTML
<script src="//code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<link rel="stylesheet" href="//stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="//stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/v/bs4/dt-1.10.18/af-2.3.0/b-1.5.2/cr-1.5.0/fc-3.2.5/fh-3.1.4/kt-2.4.0/r-2.2.2/rg-1.0.3/rr-1.2.4/sc-1.5.0/sl-1.2.6/datatables.min.css">
<script src="https://cdn.datatables.net/v/bs4/dt-1.10.18/af-2.3.0/b-1.5.2/cr-1.5.0/fc-3.2.5/fh-3.1.4/kt-2.4.0/r-2.2.2/rg-1.0.3/rr-1.2.4/sc-1.5.0/sl-1.2.6/datatables.min.js"></script>
<div class="container">
<table id="example" class="table table-striped dataTable display nowrap" width="100%">
<thead>
<tr>
<th>Test</th>
<th>Link</th>
<th>More</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Test</th>
<th>Link</th>
<th>More</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>Line 1</td>
<td><a href="#">link 1</a></td>
<td>
<button type="button" class="btn btn-sm btn-secondary">Add</button>
<div class="btn-group">
<button type="button" class="btn btn-sm btn-secondary dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
More
</button>
<div class="dropdown-menu dropdown-menu-right">
<a href="#" class="dropdown-item">Test</a>
<a href="#" class="dropdown-item">Test</a>
<div class="dropdown-divider"></div>
<a href="#" class="dropdown-item">Test</a>
</div>
</div>
</td>
</tr>
<tr>
<td>Line 2</td>
...
CSS
/*
.row {
background: #f8f9fa;
margin-top: 20px;
}
.col {
border: solid 1px #6c757d;
padding: 10px;
}
*/
JavaScript
$(document).ready( function () {
var table = $('#example').DataTable(
{
"select": true
}
);
} );