JSFiddle - React, Tailwind, and code Playground

by Khajan Singh

HTML

<button onclick="callme(event)">
Click Me
</button>

JavaScript

function callme(e){
	console.log(e, this);
}