hyperd
hyperd copied to clipboard
Virtual DOM based, template engine agnostic UI library
Results
1
hyperd issues
Sort by
recently updated
recently updated
newest added
Consider the following snippet taken from the tests: ``` js var Child = hyperd.Component.extend({ constructor: function() { hyperd.Component.apply(this, arguments); this.data.count = 0; }, render: function() { return '' + this.data.count...