Files
BlackFaces/src/app/home/home.page.ts
T
Olu Amey fdbf6025a3 fix
2020-09-12 14:32:27 -04:00

21 lines
401 B
TypeScript

import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'app-home',
templateUrl: './home.page.html',
styleUrls: ['./home.page.scss'],
})
export class HomePage implements OnInit {
constructor(private router:Router) { }
ngOnInit() {
}
public goTabPages(){
// alert("You called me");
this.router.navigateByUrl("member");
}
}