JSFiddle - React, Tailwind, and code Playground

by ericf

HTML

<script src="https://rawgithub.com/wycats/handlebars.js/v1.0.11/dist/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)