datasurvey/src/main/webapp/app/admin/health/health.module.ts

15 lines
529 B
TypeScript

import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { SharedModule } from 'app/shared/shared.module';
import { HealthComponent } from './health.component';
import { HealthModalComponent } from './modal/health-modal.component';
import { healthRoute } from './health.route';
@NgModule({
imports: [SharedModule, RouterModule.forChild([healthRoute])],
declarations: [HealthComponent, HealthModalComponent],
entryComponents: [HealthModalComponent],
})
export class HealthModule {}