first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-05-12 22:30:08 -04:00
commit cea49e295a
667 changed files with 39490 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
/*
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']);
}
}