This commit is contained in:
Olu Amey
2020-11-14 17:49:56 -05:00
parent 8324cace7f
commit 58ed7fdc27
41 changed files with 3138 additions and 909 deletions
+26
View File
@@ -0,0 +1,26 @@
import { Component, OnInit } from '@angular/core';
import { Router, NavigationExtras } from '@angular/router'
@Component({
selector: 'app-merms-dash',
templateUrl: './merms-dash.page.html',
styleUrls: ['./merms-dash.page.scss'],
})
export class MermsDashPage implements OnInit {
currentDateFormated: string = '10/10/2020';
welcomeName: string = '';
constructor(private router: Router) {
this.welcomeName = "Dr. Something"
}
ngOnInit() {
}
goSettings() {
this.router.navigateByUrl('/merms-settings')
}
}