JSFiddle - React, Tailwind, and code Playground

by Soviut

HTML

<table class="table">
  <tr>
    <td class="content">first</td>
    <td class="actions">second</td>
  </tr>
</table>

CSS

.table {
  width: 100%;
}

.content {
  width: 100%;
}

.actions {
  width: auto;
  white-space: nowrap;
}