forked from hpi-sam/digital-fuesim-manv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
exercise-map.module.ts
54 lines (53 loc) · 2.46 KB
/
exercise-map.module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import {
NgbDropdownModule,
NgbNavModule,
NgbTooltipModule,
} from '@ng-bootstrap/ng-bootstrap';
import { MessagesModule } from 'src/app/feature/messages/messages.module';
import { SharedModule } from 'src/app/shared/shared.module';
import { TransferPointOverviewModule } from '../transfer-point-overview/transfer-point-overview.module';
import { SimulatedRegionOverviewModule } from '../simulated-region-overview/simulated-region-overview.module';
import { ExerciseMapComponent } from './exercise-map.component';
import { ChooseTransferTargetPopupComponent } from './shared/choose-transfer-target-popup/choose-transfer-target-popup.component';
import { MapImagePopupComponent } from './shared/map-image-popup/map-image-popup.component';
import { PatientPopupComponent } from './shared/patient-popup/patient-popup.component';
import { TransferPointPopupComponent } from './shared/transfer-point-popup/transfer-point-popup.component';
import { VehiclePopupComponent } from './shared/vehicle-popup/vehicle-popup.component';
import { ViewportPopupComponent } from './shared/viewport-popup/viewport-popup.component';
import { PersonnelPopupComponent } from './shared/personnel-popup/personnel-popup.component';
import { MaterialPopupComponent } from './shared/material-popup/material-popup.component';
import { CaterCapacityComponent } from './shared/cater-capacity/cater-capacity.component';
import { SimulatedRegionPopupComponent } from './shared/simulated-region-popup/simulated-region-popup.component';
import { PatientNameComponent } from './shared/patient-name/patient-name.component';
@NgModule({
declarations: [
ExerciseMapComponent,
VehiclePopupComponent,
MapImagePopupComponent,
PatientPopupComponent,
TransferPointPopupComponent,
ViewportPopupComponent,
ChooseTransferTargetPopupComponent,
PersonnelPopupComponent,
MaterialPopupComponent,
CaterCapacityComponent,
SimulatedRegionPopupComponent,
PatientNameComponent,
],
exports: [ExerciseMapComponent],
imports: [
CommonModule,
FormsModule,
SharedModule,
NgbDropdownModule,
NgbNavModule,
NgbTooltipModule,
MessagesModule,
SimulatedRegionOverviewModule,
TransferPointOverviewModule,
],
})
export class ExerciseMapModule {}