diff --git a/src/app/app.module.ts b/src/app/app.module.ts index c49f349cf..e0e796c51 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -5,6 +5,7 @@ import { SplashScreen } from '@ionic-native/splash-screen'; import { StatusBar } from '@ionic-native/status-bar'; import { MomentModule } from 'angular2-moment'; import { ChatsPage } from '../pages/chats/chats'; +import { NewChatComponent } from '../pages/chats/new-chat'; import { ChatsOptionsComponent } from '../pages/chats/chats-options'; import { LoginPage } from '../pages/login/login'; import { MessagesPage } from '../pages/messages/messages'; @@ -21,7 +22,8 @@ import { MyApp } from './app.component'; LoginPage, VerificationPage, ProfilePage, - ChatsOptionsComponent + ChatsOptionsComponent, + NewChatComponent ], imports: [ BrowserModule, @@ -36,7 +38,8 @@ import { MyApp } from './app.component'; LoginPage, VerificationPage, ProfilePage, - ChatsOptionsComponent + ChatsOptionsComponent, + NewChatComponent ], providers: [ StatusBar,