tab-mine.page.ts 263 B

123456789101112131415
  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'app-tab-mine',
  4. templateUrl: './tab-mine.page.html',
  5. styleUrls: ['./tab-mine.page.scss'],
  6. })
  7. export class TabMinePage implements OnInit {
  8. constructor() { }
  9. ngOnInit() {
  10. }
  11. }