commit | author | age | ||
a5a648 | 1 | import { Component } from '@angular/core'; |
W | 2 | import { IonicPage, NavController, NavParams } from 'ionic-angular'; |
3 | ||
4 | @IonicPage({ | |
5 | name: 'contact' | |
6 | }) | |
7 | @Component({ | |
8 | selector: 'page-contact', | |
9 | templateUrl: 'contact.html', | |
10 | }) | |
11 | export class ContactPage { | |
12 | ||
13 | constructor(public navCtrl: NavController, public navParams: NavParams) { | |
14 | } | |
15 | ||
16 | ionViewDidLoad() { | |
17 | console.log('ionViewDidLoad ContactPage'); | |
18 | } | |
19 | ||
20 | } |