Files
2016-03-01 18:23:43 -06:00

21 lines
453 B
JavaScript

import {Page, NavController} from 'ionic-angular';
/*
Generated class for the <%= jsClassName %> page.
See http://ionicframework.com/docs/v2/components/#navigation for more info on
Ionic pages and navigation.
*/
@Page({
templateUrl: 'build/<%= directory %>/<%= fileName %>/<%= fileName %>.html',
})
export class <%= jsClassName %> {
static get parameters() {
return [[NavController]];
}
constructor(nav) {
this.nav = nav;
}
}