tab2.page.ts 218 B

12345678910111213
  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'app-tab2',
  4. templateUrl: 'tab2.page.html',
  5. styleUrls: ['tab2.page.scss'],
  6. standalone: false,
  7. })
  8. export class Tab2Page {
  9. constructor() {}
  10. }