https://github.com/angular/angular
Raw File
Tip revision: cbba7152fd2a533277b88aca98a50339d098d9f7 authored by Jessica Janiuk on 17 March 2021, 17:43:01 UTC
release: cut the v11.2.6 release (#41247)
Tip revision: cbba715
app.ts
import {HelloWorldComponent} from './hello-world.component';

import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';

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