JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div></div>

CSS

div {
    width: 500px;
    height: 500px;
    background: red;
}

JavaScript

document.querySelector('div').addEventListener('mousedown', () => {
	alert('asd')
})