https://github.com/angular/angular
Raw File
Tip revision: 7231f5e26a9d319730373ed6ea871d7d7eb2dc6c authored by Tobias Bosch on 18 October 2017, 23:14:53 UTC
docs: add changelog for 4.4.6
Tip revision: 7231f5e
app.module.ts
// #docregion
import { NgModule }      from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule }   from '@angular/forms';

import { AppComponent }  from './app.component';

@NgModule({
  imports: [
    BrowserModule,
    FormsModule
  ],
  declarations: [
    AppComponent
  ],
  bootstrap: [ AppComponent ]
})
export class AppModule { }
back to top