Blame view

src/app/pages/dashboard/dashboard.module.ts 1.45 KB
05b0b5d8   Yarik   first commit
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
  import { NgModule }      from '@angular/core';
  import { CommonModule }  from '@angular/common';
  import { FormsModule } from '@angular/forms';
  import { NgaModule } from '../../theme/nga.module';
  
  import { Dashboard } from './dashboard.component';
  import { routing }       from './dashboard.routing';
  
  import { PopularApp } from './popularApp';
  import { PieChart } from './pieChart';
  import { TrafficChart } from './trafficChart';
  import { UsersMap } from './usersMap';
  import { LineChart } from './lineChart';
  import { Feed } from './feed';
  import { Todo } from './todo';
  import { Calendar } from './calendar';
  import { CalendarService } from './calendar/calendar.service';
  import { FeedService } from './feed/feed.service';
  import { LineChartService } from './lineChart/lineChart.service';
  import { PieChartService } from './pieChart/pieChart.service';
  import { TodoService } from './todo/todo.service';
  import { TrafficChartService } from './trafficChart/trafficChart.service';
  import { UsersMapService } from './usersMap/usersMap.service';
  
  @NgModule({
    imports: [
      CommonModule,
      FormsModule,
      NgaModule,
      routing
    ],
    declarations: [
      PopularApp,
      PieChart,
      TrafficChart,
      UsersMap,
      LineChart,
      Feed,
      Todo,
      Calendar,
      Dashboard
    ],
    providers: [
      CalendarService,
      FeedService,
      LineChartService,
      PieChartService,
      TodoService,
      TrafficChartService,
      UsersMapService
    ]
  })
  export class DashboardModule {}