JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://builds.handlebarsjs.com.s3.amazonaws.com/handlebars-v2.0.0.js"></script>
<div id="output"></div>
<script type="template/handlebars" id="template">test</script>

JavaScript

var template = Handlebars.compile(document.getElementById('template').innerHTML);

document.getElementById('output').innerHTML = template({});