Skip to content

Commit

Permalink
Step 5.17: Add VerificationComponent to NgModule
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Feb 26, 2017
1 parent 9447989 commit 1bb8e2e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/app/app.module.ts
Expand Up @@ -6,14 +6,16 @@ import { ChatsPage } from "../pages/chats/chats";
import { MomentModule } from "angular2-moment";
import { MessagesPage } from "../pages/messages/messages";
import { LoginComponent } from "../pages/auth/login";
import { VerificationComponent } from "../pages/verification/verification";

@NgModule({
declarations: [
MyApp,
ChatsPage,
TabsPage,
MessagesPage,
LoginComponent
LoginComponent,
VerificationComponent
],
imports: [
IonicModule.forRoot(MyApp),
Expand All @@ -25,7 +27,8 @@ import { LoginComponent } from "../pages/auth/login";
ChatsPage,
TabsPage,
MessagesPage,
LoginComponent
LoginComponent,
VerificationComponent
],
providers: [{provide: ErrorHandler, useClass: IonicErrorHandler}]
})
Expand Down

0 comments on commit 1bb8e2e

Please sign in to comment.