29 lines
760 B
TypeScript
29 lines
760 B
TypeScript
|
// #docplaster
|
||
|
// #docregion
|
||
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
|
||
|
import { AdminComponent } from './admin.component';
|
||
|
import { AdminDashboardComponent } from './admin-dashboard.component';
|
||
|
import { ManageCrisesComponent } from './manage-crises.component';
|
||
|
import { ManageHeroesComponent } from './manage-heroes.component';
|
||
|
|
||
|
import { adminRouting } from './admin.routing';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
adminRouting
|
||
|
],
|
||
|
declarations: [
|
||
|
AdminComponent,
|
||
|
AdminDashboardComponent,
|
||
|
ManageCrisesComponent,
|
||
|
ManageHeroesComponent
|
||
|
]
|
||
|
})
|
||
|
// #docregion admin-module-export
|
||
|
export class AdminModule {}
|
||
|
// #enddocregion admin-module-export
|
||
|
// #enddocregion
|