Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Step 7.6: Register the component
  • Loading branch information
kamilkisiela authored and dotansimha committed Nov 27, 2016
1 parent a67c92f commit 76f2970
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions client/imports/app/app.module.ts
Expand Up @@ -10,6 +10,7 @@ import {VerificationComponent} from '../pages/auth/verification.component';
import {ProfileComponent} from '../pages/auth/profile.component';
import {ChatsOptionsComponent} from '../pages/chats/chats-options.component';
import {NewChatComponent} from '../pages/chats/new-chat.component';
import {MessagesOptionsComponent} from '../pages/chat/messages-options.component';

@NgModule({
// Components, Pipes, Directive
Expand All @@ -22,7 +23,8 @@ import {NewChatComponent} from '../pages/chats/new-chat.component';
VerificationComponent,
ProfileComponent,
ChatsOptionsComponent,
NewChatComponent
NewChatComponent,
MessagesOptionsComponent
],
// Entry Components
entryComponents: [
Expand All @@ -34,7 +36,8 @@ import {NewChatComponent} from '../pages/chats/new-chat.component';
VerificationComponent,
ProfileComponent,
ChatsOptionsComponent,
NewChatComponent
NewChatComponent,
MessagesOptionsComponent
],
// Providers
providers: [
Expand Down

0 comments on commit 76f2970

Please sign in to comment.