https://github.com/angular/angular
Raw File
Tip revision: dacac7eb62c72e43106fc75af25f314f95c8e300 authored by Pawel Kozlowski on 17 August 2022, 14:47:01 UTC
release: cut the v14.1.3 release
Tip revision: dacac7e
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