https://github.com/angular/angular
Raw File
Tip revision: 4a7e7242382e069b487ed89cdc42e5368af0c007 authored by dario-piotrowicz on 23 May 2022, 20:54:54 UTC
refactor(compiler-cli): fix "for to" typo in code comment (#46113)
Tip revision: 4a7e724
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