mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
22 lines
461 B
Cheetah
Executable File
22 lines
461 B
Cheetah
Executable File
import { Component } from '@angular/core';
|
|
import { IonicPage, NavController } from 'ionic-angular';
|
|
|
|
/**
|
|
* Generated class for the $CLASSNAME tabs.
|
|
*
|
|
* See https://angular.io/docs/ts/latest/guide/dependency-injection.html for
|
|
* more info on providers and Angular DI.
|
|
*/
|
|
@Component({
|
|
selector: 'page-$FILENAME',
|
|
templateUrl: '$FILENAME.html'
|
|
})
|
|
@IonicPage()
|
|
export class $CLASSNAME {
|
|
|
|
$TAB_VARIABLES
|
|
|
|
constructor(public navCtrl: NavController) {}
|
|
|
|
}
|