14 lines
345 B
TypeScript
14 lines
345 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { AppComponent } from './app.component.0';
|
|
|
|
@NgModule({
|
|
// #docregion imports
|
|
imports: [ BrowserModule ],
|
|
// #enddocregion imports
|
|
declarations: [ AppComponent ],
|
|
bootstrap: [ AppComponent ]
|
|
})
|
|
export class AppModule { }
|