JSFiddle - React, Tailwind, and code Playground
HTML
<div class="one" onclick="alert('one');">
one
<div class="two" onclick="alert('two');">two</div>
</div>
CSS
.one{border:1px solid black;width:200;height:200px}
.two{border:1px solid black;width:50px;height:50px;background-color:#DDDDDD;margin:20px;}