Project

General

Profile

1 57592 stefania.m
import { BrowserModule } from '@angular/platform-browser';
2
import { NgModule } from '@angular/core';
3
4
import { AppRoutingModule } from './app-routing.module';
5
import { AppComponent } from './app.component';
6
import { ReusableComponentsModule } from './shared/reusablecomponents/reusable-components.module';
7
import { HomeComponent } from './pages/home/home.component';
8
import { DataService } from './services/data.service';
9
import { CountriesTableComponent } from './pages/home/countries-table.component';
10
import { DataViewComponent } from './pages/home/data-view.component';
11
import { HighchartsChartModule } from 'highcharts-angular';
12
import { CountriesMapOverviewComponent } from './pages/home/countries-map-overview.component';
13
14
@NgModule({
15
  declarations: [
16
    AppComponent,
17
    HomeComponent,
18
    CountriesTableComponent,
19
    DataViewComponent,
20
    CountriesMapOverviewComponent
21
  ],
22
  imports: [
23
    BrowserModule,
24
    AppRoutingModule,
25
    ReusableComponentsModule,
26
    HighchartsChartModule
27
  ],
28
  providers: [
29
    DataService
30
  ],
31
  bootstrap: [AppComponent]
32
})
33
export class AppModule { }