JSFiddle - React, Tailwind, and code Playground

HTML

<div id='mainDiv'>
   <span>Some Text</span>
   <span>Some Other Text</span>
   <span>More text here</span>
</div>

CSS

#mainDiv{
  height: 300px;
  width: 300px;
  background: #1f2227;
  color: white;
  white-space: pre-wrap;
}

body{
  margin: 0;
}

JavaScript

mainDiv.addEventListener('click', (e)=>{
	console.log(e)
})