Skip to content

Commit

Permalink
Step 7.14: Import login component
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and darkbasic committed Oct 16, 2017
1 parent eb406e7 commit 7e153ee
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/app/app.module.ts
Expand Up @@ -5,6 +5,7 @@ import { SplashScreen } from '@ionic-native/splash-screen';
import { StatusBar } from '@ionic-native/status-bar';
import { MomentModule } from 'angular2-moment';
import { ChatsPage } from '../pages/chats/chats';
import { LoginPage } from '../pages/login/login';
import { MessagesPage } from '../pages/messages/messages';
import { PhoneService } from '../services/phone';
import { MyApp } from './app.component';
Expand All @@ -13,7 +14,8 @@ import { MyApp } from './app.component';
declarations: [
MyApp,
ChatsPage,
MessagesPage
MessagesPage,
LoginPage
],
imports: [
BrowserModule,
Expand All @@ -24,7 +26,8 @@ import { MyApp } from './app.component';
entryComponents: [
MyApp,
ChatsPage,
MessagesPage
MessagesPage,
LoginPage
],
providers: [
StatusBar,
Expand Down

0 comments on commit 7e153ee

Please sign in to comment.