JSFiddle - React, Tailwind, and code Playground
by madobon
HTML
<div id="hello">Hello World!</div>
<script>
document.querySelector('#hello').addEventListener('click', function(e) {
alert(this.innerHTML);
}, false);
//# sourceURL=hello-world.js
</script>