Compile Handlebars templates to React.
Compile this:
into this:
React.DOM.div(null, "value1", this.props.variable1, this.props.variable2 ? React.DOM.span(null, "value2" ) : "nothing", React.DOM.span({"data-attr":(this.props.variable3 ? "value3" : "") + " value4"}, "value5" ) );
var HandlebarsReact = require("handlebars-react"); var result = new HandlebarsReact(options).compile("<h1>{{title}}</h1>");
Accessible via define()
or window.HandlebarsReact
.