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 committed Nov 28, 2016
1 parent e58a6c9 commit 923e7bc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/app/app.module.ts
Expand Up @@ -4,12 +4,14 @@ import { MyApp } from './app.component';
import { TabsPage } from '../pages/tabs/tabs';
import { ChatsPage } from "../pages/chats/chats";
import { MomentModule } from "angular2-moment";
import { MessagesPage } from "../pages/messages/messages";

@NgModule({
declarations: [
MyApp,
ChatsPage,
TabsPage
TabsPage,
MessagesPage
],
imports: [
IonicModule.forRoot(MyApp),
Expand All @@ -19,7 +21,8 @@ import { MomentModule } from "angular2-moment";
entryComponents: [
MyApp,
ChatsPage,
TabsPage
TabsPage,
MessagesPage
],
providers: []
})
Expand Down

0 comments on commit 923e7bc

Please sign in to comment.