Created
September 21, 2016 06:52
-
-
Save choonkending/19120b207d242360f5a25573ef4490db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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