https://github.com/angular/angular
Raw File
Tip revision: e3b657e73ab31c492351849486d9a8d0ab4b74f3 authored by Dylan Hunn on 04 May 2022, 19:55:18 UTC
release: cut the v13.3.6 release (#45873)
Tip revision: e3b657e
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