JSFiddle - React, Tailwind, and code Playground
by Ishank Dubey
HTML
<span id='text'> </span>
CSS
#text{
display:inline-block;
width:44px;
height:44px;
background-color:red;
}
JavaScript
strfunction();
function strfunction (){
var aspan = document.getElementById('text');
aspan.innerHTML = 'ssss';
}