https://github.com/angular/angular
Raw File
Tip revision: 8f690c90626f531214b7ce55574a24bdf3dd970d authored by Igor Minar on 14 April 2018, 10:01:08 UTC
docs: add changelog for 6.0.0-rc.5
Tip revision: 8f690c9
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';

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

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