This commit removes all the docregion tags in examples that are not being referenced in any doc. PR Close #40479
23 lines
601 B
TypeScript
23 lines
601 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { HeroesComponent } from './heroes/heroes.component';
|
|
import { CoreModule } from './core/core.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
BrowserModule,
|
|
CoreModule,
|
|
RouterModule.forChild([{ path: '04-11', component: AppComponent }])
|
|
],
|
|
declarations: [
|
|
AppComponent,
|
|
HeroesComponent
|
|
],
|
|
exports: [ AppComponent ],
|
|
entryComponents: [ AppComponent ]
|
|
})
|
|
export class AppModule {}
|