https://github.com/angular/angular
Raw File
Tip revision: d2e7c99a93393ae5695dd3d374288afad2962b37 authored by Igor Minar on 16 April 2018, 07:21:13 UTC
docs: release notes for the 5.2.10 release
Tip revision: d2e7c99
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