JSFiddle - React, Tailwind, and code Playground

by jakie8

HTML

<div id="test">
  Hello, World!
</div>

CSS

#test{
	width:100px;
	height:100px;
}

JavaScript

var test = document.getElementById('test');

test.addEventLister('click', function(){
	alert('test');
});