diff --git a/@notes.txt b/@notes.txt new file mode 100644 index 000000000..29c481d19 --- /dev/null +++ b/@notes.txt @@ -0,0 +1,6 @@ + + +Links: +https://angular.io/docs/ts/latest/quickstart.html + + diff --git a/app/app.component.ts b/app/app.component.ts index da0e1ba7a..c3de30a5b 100644 --- a/app/app.component.ts +++ b/app/app.component.ts @@ -2,6 +2,6 @@ import { Component } from '@angular/core'; @Component({ selector: 'my-app', - template: '

My First Angular 2 App

' + template: '

My Second Angular 2 App

' }) export class AppComponent { } diff --git a/app/app.module.ts b/app/app.module.ts index 4f883fa15..780ca50a3 100644 --- a/app/app.module.ts +++ b/app/app.module.ts @@ -3,6 +3,16 @@ import { BrowserModule } from '@angular/platform-browser'; import { AppComponent } from './app.component'; + +/* +> https://angular.io/docs/ts/latest/quickstart.html + +The QuickStart application doesn't do anything else, so you don't need any other modules. +In a real application, you'd likely import FormsModule as well as RouterModule and HttpModule. +These are introduced in the Tour of Heroes Tutorial. +> https://angular.io/docs/ts/latest/tutorial/ +*/ + @NgModule({ imports: [ BrowserModule ], declarations: [ AppComponent ],