angular/modules/rollup-test/hello_world.js
Chuck Jazdzewski 43d3a84df3 Revert "refactor: add license header to JS files & format files (#12035)"
This reverts commit 8310c918236c2bc085a0fd4278ee96106c5c2f1a.
2016-10-04 14:06:41 -07:00

12 lines
243 B
JavaScript

var HelloWorldComponent = ng.core.Component({
selector: 'hello-world',
//template: 'hello world!!!'
templateUrl: 'hello-world.html'
}).Class({
constructor: function() {}
});
ng.platformBrowserDynamic.bootstrap(HelloWorldComponent);