JSFiddle - React, Tailwind, and code Playground
HTML
<div id="contenedor">
</div>
JavaScript
var a= document.createElement("a");
var texto=document.createTextNode("SALUDOS");
a.appendChild(texto);
a.addEventListener("click",function(){
console.log("asidjsij");
});
var contenedor=document.getElementById("contenedor");
contenedor.appendChild(a);