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