From bd6f3cfb3ba03e364cc45f9d01df1dcd5a11480e 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 68738ba5f..82229e4c1 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -7,6 +7,7 @@ import { MomentModule } from 'angular2-moment'; 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'; @@ -17,7 +18,8 @@ import { MyApp } from './app.component'; ChatsPage, MessagesPage, LoginPage, - VerificationPage + VerificationPage, + ProfilePage ], imports: [ BrowserModule, @@ -30,7 +32,8 @@ import { MyApp } from './app.component'; ChatsPage, MessagesPage, LoginPage, - VerificationPage + VerificationPage, + ProfilePage ], providers: [ StatusBar,