Blame view

src/app/pages/statements/statements.module.ts 741 Bytes
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
  import { NgModule }      from '@angular/core';
  import { CommonModule }  from '@angular/common';
  import { FormsModule } from '@angular/forms';
  import { NgaModule } from '../../theme/nga.module';
  import { Ng2SmartTableModule } from 'ng2-smart-table';
  
  import { routing }       from './statements.routing';
  import { Statements } from './statements.component';
  import { BusStop } from './components/busStop/busStop.component';
  import { BusStopService } from './components/busStop/busStop.service';
  
  @NgModule({
    imports: [
      CommonModule,
      FormsModule,
      NgaModule,
      routing,
      Ng2SmartTableModule,
    ],
    declarations: [
      Statements,
      BusStop,
    ],
    providers: [
      BusStopService,
    ]
  })
  export class StatementsModule {
  }