JSFiddle - React, Tailwind, and code Playground
by Julien Vernet
HTML
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.2/css/bootstrap.min.css">
<table class="table table-striped">
<thead>
<tr>
<th>Endpoint</th>
<th>Description</th>
<th>User Roles</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>stats</strong>
</td>
<td>For retrieving earnings / sales stats specific dates, date ranges, and specific products.</td>
<td>Shop Accountant, Shop Manager</td>
</tr>
<tr>
<td><strong>products</strong>
</td>
<td>For retrieving info about store products.</td>
<td>Shop Worker</td>
</tr>
<tr>
<td><strong>customers</strong>
</td>
<td>For retrieving customer stats.</td>
<td>Shop Manager</td>
</tr>
<tr>
<td><strong>sales</strong>
</td>
<td>For retrieving recent sales and info about each sale (items purchased, buyer, amount, etc).</td>
<td>Shop Accountant, Shop Manager</td>
</tr>
</tbody>
</table>