From cccb2259de7da85457973e9b86ef96502789c286 Mon Sep 17 00:00:00 2001 From: Kamil Kisiela Date: Wed, 21 Sep 2016 18:13:23 +0200 Subject: [PATCH] Step 5.5: Add parties declarations to AppModule --- client/imports/app/app.module.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/imports/app/app.module.ts b/client/imports/app/app.module.ts index 50a22d65a..e3a487a2e 100644 --- a/client/imports/app/app.module.ts +++ b/client/imports/app/app.module.ts @@ -2,13 +2,15 @@ import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { AppComponent } from './app.component'; +import { PARTIES_DECLARATIONS } from './parties'; @NgModule({ imports: [ BrowserModule ], declarations: [ - AppComponent + AppComponent, + ...PARTIES_DECLARATIONS ], bootstrap: [ AppComponent