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