JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<table class="table table-striped table-bordered table-condensed table-hover">
    <thead>
        <tr>
            <th>Marca</th>
            <th>Veículo</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Chevrolet</td>
            <td>Sonic</td>
        </tr>
        <tr>
            <td>Chevrolet</td>
            <td>Cruze</td>
        </tr>
        <tr>
            <td>Volkswagen</td>
            <td>Jeta</td>
        </tr>
    </tbody>
</table>