Skip to content

Commit

Permalink
Step 4.4: Added the Component to the NgModule
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Dec 16, 2016
1 parent ce92e21 commit fd5f427
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions client/imports/app/app.module.ts
Expand Up @@ -4,19 +4,22 @@ import { IonicApp, IonicModule } from "ionic-angular";
import {TabsContainerComponent} from "../pages/tabs-container/tabs-container.component";
import {ChatsComponent} from "../pages/chats/chats.component";
import {MomentModule} from "angular2-moment";
import {MessagesPage} from "../pages/chat/messages-page.component";

@NgModule({
// Components, Pipes, Directive
declarations: [
AppComponent,
TabsContainerComponent,
ChatsComponent
ChatsComponent,
MessagesPage
],
// Entry Components
entryComponents: [
AppComponent,
TabsContainerComponent,
ChatsComponent
ChatsComponent,
MessagesPage
],
// Providers
providers: [
Expand Down

0 comments on commit fd5f427

Please sign in to comment.