JSFiddle - React, Tailwind, and code Playground
by ericf
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0-rc.3/handlebars.js"></script>
<script type="text/x-handlebars" id="template">
{{#with this}}
<div class='wrapper'>
{{#with this}}ONE{{/with}}
</div>
{{/with}}
{{#with this}}
<div class='wrapper'>
{{#with this}}TWO{{/with}}
</div>
{{/with}}
</script>
JavaScript
var template = Handlebars.compile($("#template").text());
var html = template({});
$(document.body).html(html)