JSFiddle - React, Tailwind, and code Playground

by gkohen

HTML

<body>
    <h1>Hello Clicker!</h1>
      <button onclick="testClick()">Click me!</button>
  </body>

JavaScript

function testClick() {
    console.log('Clicked');
}