Skip to content

Commit

Permalink
Step 21.12: Include file drop module
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Dec 14, 2016
1 parent 80d143f commit 5e6c97c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/imports/app/app.module.ts
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { PARTIES_DECLARATIONS } from './parties';
import { SHARED_DECLARATIONS } from './shared'; import { SHARED_DECLARATIONS } from './shared';
import { MaterialModule } from "@angular/material"; import { MaterialModule } from "@angular/material";
import { AUTH_DECLARATIONS } from "./auth/index"; import { AUTH_DECLARATIONS } from "./auth/index";
import { FileDropModule } from "angular2-file-drop";


@NgModule({ @NgModule({
imports: [ imports: [
Expand All @@ -24,7 +25,8 @@ import { AUTH_DECLARATIONS } from "./auth/index";
AgmCoreModule.forRoot({ AgmCoreModule.forRoot({
apiKey: 'AIzaSyAWoBdZHCNh5R-hB5S5ZZ2oeoYyfdDgniA' apiKey: 'AIzaSyAWoBdZHCNh5R-hB5S5ZZ2oeoYyfdDgniA'
}), }),
MaterialModule.forRoot() MaterialModule.forRoot(),
FileDropModule
], ],
declarations: [ declarations: [
AppComponent, AppComponent,
Expand Down

0 comments on commit 5e6c97c

Please sign in to comment.