mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
import { HealthPageRoutingModule } from './health-page.routing.module';
|
|
import { HealthPanelComponent } from './health-panel/health-panel.component';
|
|
import { HealthStatusComponent } from './health-panel/health-status/health-status.component';
|
|
import { HealthPageComponent } from './health-page.component';
|
|
import { HealthComponentComponent } from './health-panel/health-component/health-component.component';
|
|
import { HealthInfoComponent } from './health-info/health-info.component';
|
|
import { HealthInfoComponentComponent } from './health-info/health-info-component/health-info-component.component';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
HealthPageRoutingModule,
|
|
NgbModule,
|
|
TranslateModule,
|
|
HealthPageComponent,
|
|
HealthPanelComponent,
|
|
HealthStatusComponent,
|
|
HealthComponentComponent,
|
|
HealthInfoComponent,
|
|
HealthInfoComponentComponent
|
|
]
|
|
})
|
|
export class HealthPageModule {
|
|
}
|