JSFiddle - React, Tailwind, and code Playground

by Elijah Tate

HTML

<div class="main">
  <button type="button">Click Me!</button> 
</div>

CSS

.main{
  width: 100px;
  height: 100px;
  background-color: red;
}

JavaScript

$("#bttn").on("click", function(){
	console.log("Hell0");
});