JSFiddle - React, Tailwind, and code Playground

HTML

<div id="output"></div>

JavaScript

var temp = {"title": "Hello world!"};
/* Approach 1
var t = _.template('<div><%= title %></div>');
document.getElementById("output").innerHTML = t(temp);
*/
/* Approach 2 */
document.getElementById("output").innerHTML = _.template('<div><%= title%>j</div>', temp);