https://github.com/angular/angular
Raw File
Tip revision: 13d176302bcaafa9fc19c1a1b358e1aaa93f0d29 authored by atscott on 15 July 2020, 17:56:55 UTC
release: cut the v10.0.4 release
Tip revision: 13d1763
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