19 lines
514 B
TypeScript
19 lines
514 B
TypeScript
// #docregion
|
|
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { BypassSecurityComponent } from './bypass-security.component';
|
|
import { InnerHtmlBindingComponent } from './inner-html-binding.component';
|
|
|
|
@NgModule({
|
|
imports: [ BrowserModule ],
|
|
declarations: [
|
|
AppComponent,
|
|
BypassSecurityComponent,
|
|
InnerHtmlBindingComponent
|
|
],
|
|
bootstrap: [ AppComponent ]
|
|
})
|
|
export class AppModule { }
|