JSFiddle - React, Tailwind, and code Playground

by Premchand R

HTML

<table style="width:100%; table-layout:fixed">
    <tr>
      <th>Type of Charging Station</th>
      <div class="scroll-wrapper">
        <table>
          <tr>
            <th>Type of Charging Station</th>
          </tr>
        </table>              
      </div>
    </tr>
</table>

CSS

.scroll-wrapper{
  margin:0;
  overflow:scroll;
}