Skip to content

Commit

Permalink
Step 2.7: Added the chats page to the NgModule
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Feb 26, 2017
1 parent 847324d commit ca495f8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions client/imports/app/app.module.ts
Expand Up @@ -2,17 +2,20 @@ import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { IonicApp, IonicModule } from "ionic-angular";
import {TabsContainerComponent} from "../pages/tabs-container/tabs-container.component";
import {ChatsComponent} from "../pages/chats/chats.component";

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

0 comments on commit ca495f8

Please sign in to comment.