Skip to content

Commit

Permalink
Step 5.12: Add login component to NgModule
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha committed Nov 28, 2016
1 parent d0492ec commit 4d726fb
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/app/app.module.ts
Expand Up @@ -5,13 +5,15 @@ import { TabsPage } from '../pages/tabs/tabs';
import { ChatsPage } from "../pages/chats/chats";
import { MomentModule } from "angular2-moment";
import { MessagesPage } from "../pages/messages/messages";
import { LoginComponent } from "../pages/auth/login";

@NgModule({
declarations: [
MyApp,
ChatsPage,
TabsPage,
MessagesPage
MessagesPage,
LoginComponent
],
imports: [
IonicModule.forRoot(MyApp),
Expand All @@ -22,7 +24,8 @@ import { MessagesPage } from "../pages/messages/messages";
MyApp,
ChatsPage,
TabsPage,
MessagesPage
MessagesPage,
LoginComponent
],
providers: []
})
Expand Down

0 comments on commit 4d726fb

Please sign in to comment.