JSFiddle - React, Tailwind, and code Playground

by Casiano Rodriguez-Leon

HTML

<div id="target"></div>

CSS

#target { 
    font-size: xx-large; 
    font-style: oblique;
    font-weight: bold;
}

JavaScript

var t = _.template("Hello <%= name %>");
target.innerHTML = t({ name: "Pepe"});