Skip to content

Commit

Permalink
Step 14.10: Import those declarations to AppModule
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela authored and dotansimha committed Nov 27, 2016
1 parent 2f428ed commit 6500c77
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/imports/app/app.module.ts
Expand Up @@ -8,6 +8,7 @@ import { Ng2PaginationModule } from 'ng2-pagination';
import { AppComponent } from './app.component';
import { routes, ROUTES_PROVIDERS } from './app.routes';
import { PARTIES_DECLARATIONS } from './parties';
import { SHARED_DECLARATIONS } from './shared';

@NgModule({
imports: [
Expand All @@ -20,7 +21,8 @@ import { PARTIES_DECLARATIONS } from './parties';
],
declarations: [
AppComponent,
...PARTIES_DECLARATIONS
...PARTIES_DECLARATIONS,
...SHARED_DECLARATIONS
],
providers: [
...ROUTES_PROVIDERS
Expand Down

0 comments on commit 6500c77

Please sign in to comment.