diff --git a/client/imports/app/app.component.ts b/client/imports/app/app.component.ts index 8725ca7..7ae35c7 100644 --- a/client/imports/app/app.component.ts +++ b/client/imports/app/app.component.ts @@ -1,12 +1,15 @@ import { Component } from '@angular/core'; import { Platform } from 'ionic-angular'; import { StatusBar, Splashscreen } from 'ionic-native'; +import { ChatsPage } from '../pages/chats/chats'; import template from "./app.html"; @Component({ template }) export class MyApp { + rootPage = ChatsPage; + constructor(platform: Platform) { platform.ready().then(() => { // Okay, so the platform is ready and our plugins are available.