05b0b5d8
Yarik
first commit
|
1
2
3
4
5
|
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';
|
d3423f8e
Yarik
Table change
|
6
|
import { AgGridModule } from 'ag-grid-ng2/main';
|
05b0b5d8
Yarik
first commit
|
7
8
9
10
|
import { routing } from './statements.routing';
import { Statements } from './statements.component';
import { BusStop } from './components/busStop/busStop.component';
|
d3423f8e
Yarik
Table change
|
11
|
import { BusStop2 } from './components/busStop2/busStop2.component';
|
05b0b5d8
Yarik
first commit
|
12
|
import { BusStopService } from './components/busStop/busStop.service';
|
d3423f8e
Yarik
Table change
|
13
|
import { BusStop2Service } from './components/busStop2/busStop2.service';
|
05b0b5d8
Yarik
first commit
|
14
15
16
17
18
19
20
21
|
@NgModule({
imports: [
CommonModule,
FormsModule,
NgaModule,
routing,
Ng2SmartTableModule,
|
d3423f8e
Yarik
Table change
|
22
23
24
|
AgGridModule.withComponents([
BusStop2
]),
|
05b0b5d8
Yarik
first commit
|
25
26
27
28
|
],
declarations: [
Statements,
BusStop,
|
d3423f8e
Yarik
Table change
|
29
|
BusStop2
|
05b0b5d8
Yarik
first commit
|
30
31
32
|
],
providers: [
BusStopService,
|
d3423f8e
Yarik
Table change
|
33
|
BusStop2Service
|
05b0b5d8
Yarik
first commit
|
34
35
36
37
|
]
})
export class StatementsModule {
}
|