From 7d003c7c2f552dfa4fe35e04aff964d94a106128 Mon Sep 17 00:00:00 2001 From: Dotan Simha Date: Thu, 3 Nov 2016 20:52:07 +0200 Subject: [PATCH] Step 7.6: Register the component --- src/app/app.module.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 648b670ff..5e0025e43 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -10,6 +10,7 @@ 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"; +import { MessagesOptionsComponent } from "../pages/messages-options/messages-options"; @NgModule({ declarations: [ @@ -22,6 +23,7 @@ import { NewChatComponent } from "../pages/new-chat/new-chat"; ProfileComponent, ChatsOptionsComponent, NewChatComponent, + MessagesOptionsComponent ], imports: [ IonicModule.forRoot(MyApp), @@ -37,7 +39,8 @@ import { NewChatComponent } from "../pages/new-chat/new-chat"; VerificationComponent, ProfileComponent, ChatsOptionsComponent, - NewChatComponent + NewChatComponent, + MessagesOptionsComponent ], providers: [] })