annotate src/app/query-app.module.ts @ 47:b65a031c4967 ng2-final

first step to angular2-final (2.4) version of the query browser.
author casties
date Fri, 17 Mar 2017 20:16:52 +0100
parents
children f8d6f8479e77
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';
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
3
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
4 import { QueryAppComponent } from './query-app.component';
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
5 import { QuerySelectComponent } from './query-select.component';
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
6 import { QueryResultComponent } from './query-result.component';
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
7 import { QueryResultRowComponent } from './query-result-row.component';
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
8 //import { QueryResultTableComponent } from './query-result-table.component';
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
9
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
10
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
11 @NgModule({
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
12 imports: [ BrowserModule ],
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
13 declarations: [ QueryAppComponent, QuerySelectComponent,
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
14 QueryResultComponent, QueryResultRowComponent ],
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
15 bootstrap: [ QueryAppComponent ]
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
16 })
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
17 export class AppModule { }