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 DAB0mB committed Dec 14, 2016
1 parent 6a6c173 commit 79a7685
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 79a7685

Please sign in to comment.