JSFiddle - React, Tailwind, and code Playground

by Edgar Martinez

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);