This repository has been archived on 2023-11-19. You can view files and clone it, but cannot push or open issues or pull requests.
goober-ionic/src/pages/profile/profile.ts

28 lines
592 B
TypeScript
Raw Normal View History

2018-11-13 00:34:38 +00:00
import { Component } from '@angular/core';
import { NavController, NavParams } from 'ionic-angular';
/**
* Generated class for the ProfilePage page.
*
* See https://ionicframework.com/docs/components/#navigation for more info on
* Ionic pages and navigation.
*/
@Component({
selector: 'page-profile',
templateUrl: 'profile.html',
})
export class ProfilePage {
private user: any;
constructor(public navCtrl: NavController, public navParams: NavParams) {
this.user = this.navParams.data.user;
}
ionViewDidLoad() {
console.log('ionViewDidLoad ProfilePage');
}
}