Mercurial > hg > ng2-query-ismi
annotate src/app/query-app.module.ts @ 49:781a5387ca93
Merge with angular2-final branch
f8d6f8479e77011fd043c5feb2b14a476d0aaffc
author | casties |
---|---|
date | Mon, 20 Mar 2017 18:50:31 +0100 |
parents | f8d6f8479e77 |
children | 1245781e2575 |
rev | line source |
---|---|
47
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
1 import { NgModule } from '@angular/core'; |
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
2 import { BrowserModule } from '@angular/platform-browser'; |
48
f8d6f8479e77
first working version with angular 2.4 (using old table w/o pager).
casties
parents:
47
diff
changeset
|
3 import { FormsModule } from '@angular/forms'; |
f8d6f8479e77
first working version with angular 2.4 (using old table w/o pager).
casties
parents:
47
diff
changeset
|
4 import { HttpModule } from '@angular/http'; |
47
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
5 |
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
6 import { QueryAppComponent } from './query-app.component'; |
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
7 import { QuerySelectComponent } from './query-select.component'; |
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
8 import { QueryResultComponent } from './query-result.component'; |
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
9 import { QueryResultRowComponent } from './query-result-row.component'; |
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
10 //import { QueryResultTableComponent } from './query-result-table.component'; |
48
f8d6f8479e77
first working version with angular 2.4 (using old table w/o pager).
casties
parents:
47
diff
changeset
|
11 import { QueryService } from './query.service'; |
f8d6f8479e77
first working version with angular 2.4 (using old table w/o pager).
casties
parents:
47
diff
changeset
|
12 import { NormalizationService } from './normalization.service'; |
47
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
13 |
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
14 |
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
15 @NgModule({ |
48
f8d6f8479e77
first working version with angular 2.4 (using old table w/o pager).
casties
parents:
47
diff
changeset
|
16 imports: [ BrowserModule, FormsModule, HttpModule ], |
47
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
17 declarations: [ QueryAppComponent, QuerySelectComponent, |
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
18 QueryResultComponent, QueryResultRowComponent ], |
48
f8d6f8479e77
first working version with angular 2.4 (using old table w/o pager).
casties
parents:
47
diff
changeset
|
19 providers: [ QueryService, NormalizationService ], |
47
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
20 bootstrap: [ QueryAppComponent ] |
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
21 }) |
b65a031c4967
first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff
changeset
|
22 export class AppModule { } |