JSFiddle - React, Tailwind, and code Playground

HTML

<button disabled>Hello World</button>

CSS

button {
    padding: 0;
    border: 0;
    background-color: inherit;
    color: Blue;
    cursor: pointer;    
}

JavaScript

// This will never run
$(function() {
    $("button").click(function() {
        alert("Hello World");
    });
});