JSFiddle - React, Tailwind, and code Playground
HTML
<div id="container">Hi...</div>
JavaScript
var AppView = Backbone.View.extend({
el: '#container',
initialize: function(){
this.render();
},
render: function(){
this.$el.html("<h1>Hello!!!</h1>");
}
});
var appView = new AppView();