https://github.com/angular/angular
Raw File
Tip revision: 8cfb53df0141c725b67b09dd5c8777bd2992033c authored by Andrew Scott on 27 April 2022, 18:23:40 UTC
release: cut the v13.3.5 release (#45780)
Tip revision: 8cfb53d
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