import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-my-team', templateUrl: './my-team.page.html', styleUrls: ['./my-team.page.scss'], }) export class MyTeamPage implements OnInit { constructor() { } ngOnInit() { } }