https://github.com/angular/angular
Raw File
Tip revision: f1108fea766167f06e229bfd7992d4119838a3d4 authored by Matias Niemelä on 24 October 2017, 06:28:28 UTC
docs: add changelog for 5.0.0-rc.5
Tip revision: f1108fe
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