annotate src/app/query-app.module.ts @ 48:f8d6f8479e77 ng2-final

first working version with angular 2.4 (using old table w/o pager).
author casties
date Mon, 20 Mar 2017 18:12:48 +0100
parents b65a031c4967
children 1245781e2575
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 { }