JSFiddle - React, Tailwind, and code Playground

by YameenYasin

HTML

<button id="bn1">Click me!</button>

CSS

.red{
    
    color:red;
}
.green{
    color:green;
}

JavaScript

$(document).ready(function(){
    
        $("button").click(function(){
            
            alert("Button is clicked");
        
        });
            
    
    });