JSFiddle - React, Tailwind, and code Playground
HTML
<button id="numberonebutton">Start</button>
JavaScript
$('#numberonebutton').click(function() {
$(this).text('Stop');
});
<button id="numberonebutton">Start</button>
$('#numberonebutton').click(function() {
$(this).text('Stop');
});