JSFiddle - React, Tailwind, and code Playground
HTML
<div id="st00f"></div>
<button id="btn">Add HTML</button>
JavaScript
$(document).ready(function () {
$('.morebutton2').hide();
$('#btn').on("click", function () {
$("#st00f").html("<table style='border:solid'><tr><th>other things</th></tr></table>");
});
});