JSFiddle - React, Tailwind, and code Playground

by pedromendessk

JavaScript

$(function() {
   var table = "<table>";

    table += "<tr>";
    table += "<th><center>Title</center></th>";
    table += "</tr>";
    table += "<tr>";
    table += "<td><center> data </center></td>";
    table += "</tr>";
    table += "</table>";
    
    $('body').append(table);
});