Nav apraksta

profile.page.ts 290B

12345678910111213141516171819
  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'app-profile',
  4. templateUrl: './profile.page.html',
  5. styleUrls: ['./profile.page.scss'],
  6. })
  7. export class ProfilePage implements OnInit {
  8. user2: any;
  9. user: any;
  10. constructor() { }
  11. ngOnInit() {
  12. }
  13. }