JSFiddle - React, Tailwind, and code Playground
by John Doe
HTML
test: <div id='ha1'></div>
<button id='t1'>button</button>
JavaScript
$(document).ready(function() {
$('#t1').on('click', function(){
$('#ha1').html("adg dgw");
});
});