From fea2dae87329404ed24e88631f99e70179f97b56 Mon Sep 17 00:00:00 2001 From: dotansimha Date: Thu, 26 Jan 2017 17:00:05 +0200 Subject: [PATCH] Step 7.27: Import profile component --- 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 23a211ad9..e33ea6c3c 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -4,6 +4,7 @@ import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular'; import { ChatsPage } from '../pages/chats/chats'; import { LoginPage } from '../pages/login/login'; import { MessagesPage } from '../pages/messages/messages'; +import { ProfilePage } from '../pages/profile/profile'; import { VerificationPage } from '../pages/verification/verification'; import { PhoneService } from '../services/phone'; import { MyApp } from './app.component'; @@ -14,7 +15,8 @@ import { MyApp } from './app.component'; ChatsPage, MessagesPage, LoginPage, - VerificationPage + VerificationPage, + ProfilePage ], imports: [ IonicModule.forRoot(MyApp), @@ -26,7 +28,8 @@ import { MyApp } from './app.component'; ChatsPage, MessagesPage, LoginPage, - VerificationPage + VerificationPage, + ProfilePage ], providers: [ {provide: ErrorHandler, useClass: IonicErrorHandler},