JSFiddle - React, Tailwind, and code Playground

HTML

<button id="helloButton">
        Search</button>
    <div id="hello">


    </div>

JavaScript

$('#helloButton').click(function() {


    $('#hello').html('<div>hello world</div>');

});