Skip to content

Instantly share code, notes, and snippets.

@choonkending
Created September 21, 2016 06:52
Show Gist options
  • Save choonkending/19120b207d242360f5a25573ef4490db to your computer and use it in GitHub Desktop.
Save choonkending/19120b207d242360f5a25573ef4490db to your computer and use it in GitHub Desktop.
/*
* Backbone view
*/
var View = Backbone.View.extend({
modifyDOM: function() {
this.$el.html(this.template(obj));
},
render: function() {
this.$el.html(this.template(obj));
}
});
const SomeComponent = props => <div />;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment