JSFiddle - React, Tailwind, and code Playground

HTML

<div id="cell"/>

JavaScript

var img = document.createElement('img');
img.src = "images/tv.jpg";
img.width = "280";
img.alt='Url not exist';
img.height = "200";
img.onclick = function () {
    alert('1');
}

document.getElementById("cell").appendChild(img);