|
@@ -2,13 +2,13 @@ import { Component } from '@angular/core';
|
2
|
2
|
import { Platform } from 'ionic-angular';
|
3
|
3
|
import { StatusBar } from '@ionic-native/status-bar';
|
4
|
4
|
import { SplashScreen } from '@ionic-native/splash-screen';
|
5
|
|
-import { LoginPage } from '../pages/login/login';
|
|
5
|
+import { HomePage } from '../pages/home/home';
|
6
|
6
|
|
7
|
7
|
@Component({
|
8
|
8
|
templateUrl: 'app.html'
|
9
|
9
|
})
|
10
|
10
|
export class MyApp {
|
11
|
|
- rootPage:any = LoginPage;
|
|
11
|
+ rootPage:any = HomePage;
|
12
|
12
|
|
13
|
13
|
constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
|
14
|
14
|
platform.ready().then(() => {
|