Project

General

Profile

1
import { NgModule } from '@angular/core';
2
import { CommonModule } from '@angular/common';
3
import { ContinentOpenScienceORPRoutingModule } from './continent-os-orp-routing.module';
4
import { ReusableComponentsModule } from '../../../../shared/reusablecomponents/reusable-components.module';
5
import { ContinentOSORPComponent } from './continent-os-orp.component';
6
import { ContinentOSORPIndicatorsComponent } from './continent-os-orp-indicators.component';
7
import { DataService } from '../../../../services/data.service';
8
import { DataHandlerService } from '../../../../services/data-handler.service';
9

    
10

    
11
@NgModule ({
12
  imports: [
13
    CommonModule,
14
    ContinentOpenScienceORPRoutingModule,
15
    ReusableComponentsModule,
16
  ],
17
  declarations: [
18
    ContinentOSORPComponent,
19
    ContinentOSORPIndicatorsComponent,
20
  ],
21
  providers: [
22
    DataService,
23
    DataHandlerService
24
  ],
25
})
26

    
27
export class ContinentOpenScienceORPModule {}
(6-6/6)