Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Step 19.22: Updated the NgModule imports
  • Loading branch information
dotansimha authored and DAB0mB committed Dec 14, 2016
1 parent 9aea953 commit 24471c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/imports/app/app.module.ts
Expand Up @@ -11,6 +11,7 @@ import { routes, ROUTES_PROVIDERS } from './app.routes';
import { PARTIES_DECLARATIONS } from './parties';
import { SHARED_DECLARATIONS } from './shared';
import { MaterialModule } from "@angular/material";
import { AUTH_DECLARATIONS } from "./auth/index";

@NgModule({
imports: [
Expand All @@ -28,7 +29,8 @@ import { MaterialModule } from "@angular/material";
declarations: [
AppComponent,
...PARTIES_DECLARATIONS,
...SHARED_DECLARATIONS
...SHARED_DECLARATIONS,
...AUTH_DECLARATIONS
],
providers: [
...ROUTES_PROVIDERS
Expand Down

0 comments on commit 24471c4

Please sign in to comment.