Skip to content

Commit

Permalink
Step 8.9: Import new chat component
Browse files Browse the repository at this point in the history
  • Loading branch information
DAB0mB committed Feb 13, 2017
1 parent ce1662d commit afe9c8a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions client/imports/app/app.module.ts
Expand Up @@ -3,6 +3,7 @@ import { MomentModule } from 'angular2-moment';
import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular';
import { ChatsPage } from '../pages/chats/chats'
import { ChatsOptionsComponent } from '../pages/chats/chats-options';
import { NewChatComponent } from '../pages/chats/new-chat';
import { LoginPage } from '../pages/login/login';
import { MessagesPage } from '../pages/messages/messages';
import { ProfilePage } from '../pages/profile/profile';
Expand All @@ -18,7 +19,8 @@ import { MyApp } from './app.component';
LoginPage,
VerificationPage,
ProfilePage,
ChatsOptionsComponent
ChatsOptionsComponent,
NewChatComponent
],
imports: [
IonicModule.forRoot(MyApp),
Expand All @@ -32,7 +34,8 @@ import { MyApp } from './app.component';
LoginPage,
VerificationPage,
ProfilePage,
ChatsOptionsComponent
ChatsOptionsComponent,
NewChatComponent
],
providers: [
{ provide: ErrorHandler, useClass: IonicErrorHandler },
Expand Down

0 comments on commit afe9c8a

Please sign in to comment.