From 76ab5a66c95769a48a778137bda372fe51d0dff9 Mon Sep 17 00:00:00 2001 From: Dotan Simha Date: Thu, 3 Nov 2016 20:25:44 +0200 Subject: [PATCH] Step 6.10: Register that 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 2780d17a7..648b670ff 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -9,6 +9,7 @@ import { LoginComponent } from "../pages/auth/login"; import { VerificationComponent } from "../pages/verification/verification"; import { ProfileComponent } from "../pages/profile/profile"; import { ChatsOptionsComponent } from "../pages/chat-options/chat-options"; +import { NewChatComponent } from "../pages/new-chat/new-chat"; @NgModule({ declarations: [ @@ -19,7 +20,8 @@ import { ChatsOptionsComponent } from "../pages/chat-options/chat-options"; LoginComponent, VerificationComponent, ProfileComponent, - ChatsOptionsComponent + ChatsOptionsComponent, + NewChatComponent, ], imports: [ IonicModule.forRoot(MyApp), @@ -34,7 +36,8 @@ import { ChatsOptionsComponent } from "../pages/chat-options/chat-options"; LoginComponent, VerificationComponent, ProfileComponent, - ChatsOptionsComponent + ChatsOptionsComponent, + NewChatComponent ], providers: [] })