https://github.com/angular/angular
Raw File
Tip revision: 73c7882629a65158fa31b431dad7340aa4b02e91 authored by Alex Rickabaugh on 23 September 2020, 18:54:47 UTC
release: cut the v10.1.3 release
Tip revision: 73c7882
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
back to top