JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.0.10/handlebars.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({});