JSFiddle - React, Tailwind, and code Playground

by Chris Getz

HTML

<div id="box">

</div>

CSS

#box{
  width:100px;
  height:110px;
  background-color:blue;
  color: white;
}

JavaScript

var testBox = document.getElementById("box");
testBox.innerHTML = "cacahuetes";