Skip to content

Commit

Permalink
Step 7.27: Import profile component
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Feb 13, 2017
1 parent 1fde60c commit fea2dae
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/app/app.module.ts
Expand Up @@ -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';
Expand All @@ -14,7 +15,8 @@ import { MyApp } from './app.component';
ChatsPage,
MessagesPage,
LoginPage,
VerificationPage
VerificationPage,
ProfilePage
],
imports: [
IonicModule.forRoot(MyApp),
Expand All @@ -26,7 +28,8 @@ import { MyApp } from './app.component';
ChatsPage,
MessagesPage,
LoginPage,
VerificationPage
VerificationPage,
ProfilePage
],
providers: [
{provide: ErrorHandler, useClass: IonicErrorHandler},
Expand Down

0 comments on commit fea2dae

Please sign in to comment.