JSFiddle - React, Tailwind, and code Playground

by chiefGui

HTML

<button id="greetings">Clique aqui!</button>

JavaScript

var button = document.getElementById('greetings');

button.addEventListener('click', helloWorld, false);

function helloWorld () {
    alert('Hello world!');
};