mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
20 lines
382 B
Cheetah
20 lines
382 B
Cheetah
import { Component } from '@angular/core';
|
|
import { NavController } from 'ionic-angular';
|
|
|
|
/*
|
|
Generated class for the $CLASSNAME page.
|
|
|
|
See http://ionicframework.com/docs/v2/components/#navigation for more info on
|
|
Ionic pages and navigation.
|
|
*/
|
|
@Component({
|
|
templateUrl: '$FILENAME.html'
|
|
})
|
|
export class $CLASSNAME {
|
|
|
|
constructor(private navCtrl: NavController) {
|
|
|
|
}
|
|
|
|
}
|