JSFiddle - React, Tailwind, and code Playground
HTML
<input id="elem" type="button" value="Click me">
JavaScript
elem.onclick = function() {
alert('Thank you');
};
<input id="elem" type="button" value="Click me">
elem.onclick = function() {
alert('Thank you');
};