37 lines
802 B
TypeScript
37 lines
802 B
TypeScript
/*
|
|
Authors : initappz (Rahul Jograna)
|
|
Website : https://initappz.com/
|
|
App Name : E-Learning App Template
|
|
This App Template Source code is licensed as per the
|
|
terms found in the Website https://initappz.com/license
|
|
Copyright and Good Faith Purchasers © 2021-present initappz.
|
|
*/
|
|
import { Router } from '@angular/router';
|
|
import { NavController } from '@ionic/angular';
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-message',
|
|
templateUrl: './message.page.html',
|
|
styleUrls: ['./message.page.scss'],
|
|
})
|
|
export class MessagePage implements OnInit {
|
|
|
|
constructor(
|
|
private navctr: NavController,
|
|
private router: Router
|
|
) { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
onBack() {
|
|
this.navctr.back();
|
|
}
|
|
|
|
onCall() {
|
|
this.router.navigate(['call']);
|
|
}
|
|
|
|
}
|