We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a19d597 commit e113247Copy full SHA for e113247
src/app/app.component.ts
@@ -2,13 +2,13 @@ import { Component } from '@angular/core';
2
import { Platform } from 'ionic-angular';
3
import { StatusBar } from '@ionic-native/status-bar';
4
import { SplashScreen } from '@ionic-native/splash-screen';
5
+import { ChatsPage } from '../pages/chats/chats';
6
-import { HomePage } from '../pages/home/home';
7
@Component({
8
templateUrl: 'app.html'
9
})
10
export class MyApp {
11
- rootPage:any = HomePage;
+ rootPage:any = ChatsPage;
12
13
constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
14
platform.ready().then(() => {
0 commit comments