docs(aio): ward's changes

This commit is contained in:
Ward Bell
2017-06-19 23:32:30 -07:00
committed by Hans
parent b1dab181e0
commit 37cdc4f759
18 changed files with 1095 additions and 494 deletions

View File

@ -0,0 +1,15 @@
// #docregion
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
// #docregion class
@NgModule({
imports: [ BrowserModule, FormsModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
// #enddocregion class