JSFiddle - React, Tailwind, and code Playground

HTML

<p id="place"></p>
<input id="sting" type="submit" value="Run"/>

JavaScript

$(document).on('click', '#sting', function(){
$('#place').text("Number One");
});