We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 242b004 commit e9770eeCopy full SHA for e9770ee
1 file changed
app/js/app.component.js
@@ -0,0 +1,10 @@
1
+(function (app) {
2
+ app.AppComponent =
3
+ ng.core.Component({
4
+ selector: 'my-app',
5
+ template: '<h1>My First Angular App</h1>'
6
+ })
7
+ .Class({
8
+ constructor: function () { }
9
+ });
10
+})( window.app || (window.app = {} ));
0 commit comments