Skip to content

Commit e113247

Browse files
dotansimhadarkbasic
authored andcommitted
Step 2.6: Use the chats page as the main root page
1 parent a19d597 commit e113247

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/app.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import { Component } from '@angular/core';
22
import { Platform } from 'ionic-angular';
33
import { StatusBar } from '@ionic-native/status-bar';
44
import { SplashScreen } from '@ionic-native/splash-screen';
5+
import { ChatsPage } from '../pages/chats/chats';
56

6-
import { HomePage } from '../pages/home/home';
77
@Component({
88
templateUrl: 'app.html'
99
})
1010
export class MyApp {
11-
rootPage:any = HomePage;
11+
rootPage:any = ChatsPage;
1212

1313
constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
1414
platform.ready().then(() => {

0 commit comments

Comments
 (0)