page-authority-experts.component.ts 630 B

1234567891011121314151617181920212223242526
  1. import { Component, OnInit } from '@angular/core';
  2. import { Router } from '@angular/router';
  3. import { IonButton, IonHeader, IonToolbar } from '@ionic/angular/standalone';
  4. @Component({
  5. selector: 'page-authority-experts',
  6. templateUrl: './page-authority-experts.component.html',
  7. styleUrls: ['./page-authority-experts.component.scss'],
  8. standalone: true,
  9. imports:[
  10. IonHeader,IonToolbar,IonButton,
  11. ]
  12. })
  13. export class PageAuthorityExpertsComponent implements OnInit {
  14. constructor(
  15. private router: Router
  16. ) { }
  17. ngOnInit() {}
  18. back:string = "<";
  19. backhome(){
  20. this.router.navigate(['/tabs/tab1']);
  21. }
  22. }