| 12345678910111213141516171819 |
- import { Component, OnInit } from '@angular/core';
- @Component({
- selector: 'app-profile',
- templateUrl: './profile.page.html',
- styleUrls: ['./profile.page.scss'],
- })
- export class ProfilePage implements OnInit {
- user2: any;
- user: any;
-
- constructor() { }
- ngOnInit() {
- }
- }
|