JSFiddle - React, Tailwind, and code Playground

HTML

<body>
    <p>Hi There!</p>
    <button id="the_button">Click to add row</button>
    <table id="content">
        <tbody></tbody>
    </table>
</body>

JavaScript

$("#the_button").click(function () {
    var row = $("<tr><td>This is a row</td></tr>");
    row.prependTo('table > tbody');
    //row.show(500);
   });