JSFiddle - React, Tailwind, and code Playground

by ldrum

HTML

<script src="https://unpkg.com/handlebars@latest/dist/handlebars.js"></script>
<!-- 
If you need a specific version:
<script src="https://unpkg.com/[email protected]/dist/handlebars.js"></script> -->

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

JavaScript

var data = {
  "user": {
    "name": "Bob"
  }
}

Handlebars.registerPartial("user_partial", "{{user.name}}"); 
var template = Handlebars.compile("My name is {{> user_partial}}");  // throws compiler error
document.getElementById('output').innerHTML = template(data);