JSFiddle - React, Tailwind, and code Playground

HTML

<p>Click the Firefox logo to log tag name of the event target</p>
<button><img src="https://mozorg.cdn.mozilla.net/media/img/home/voices/firefox-logo-wordmark-white.png"></button>
    <pre></pre>

JavaScript

document.addEventListener('click', function(e){
    document.getElementsByTagName('pre')[0].textContent += e.target + '\n';
});