From 016f1abe7b195a0e8d2a50fb4b1e34d8d95500e0 Mon Sep 17 00:00:00 2001 From: Dotan Simha Date: Thu, 3 Nov 2016 19:56:44 +0200 Subject: [PATCH] Step 5.25: Add profile component to NgModule --- src/app/app.module.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 11592ac31..d06c2f70b 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -7,6 +7,7 @@ import { MomentModule } from "angular2-moment"; import { MessagesPage } from "../pages/messages/messages"; import { LoginComponent } from "../pages/auth/login"; import { VerificationComponent } from "../pages/verification/verification"; +import { ProfileComponent } from "../pages/profile/profile"; @NgModule({ declarations: [ @@ -15,7 +16,8 @@ import { VerificationComponent } from "../pages/verification/verification"; TabsPage, MessagesPage, LoginComponent, - VerificationComponent + VerificationComponent, + ProfileComponent ], imports: [ IonicModule.forRoot(MyApp), @@ -28,7 +30,8 @@ import { VerificationComponent } from "../pages/verification/verification"; TabsPage, MessagesPage, LoginComponent, - VerificationComponent + VerificationComponent, + ProfileComponent ], providers: [] })