JSFiddle - React, Tailwind, and code Playground

by wrxsti85

HTML

<div id="test">

</div>

CSS

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

JavaScript

var test = document.getElementById('test');
test.addEventListener('click', function(){
	alert('test')
})