Files
2015-10-09 22:45:46 -05:00

23 lines
451 B
TypeScript

import {NavController, NavParams} from 'ionic/ionic';
import {Page, ViewController} from 'ionic/ionic';
import * as helpers from './helpers';
@Page({
template: 'Hello 1',
})
class TabOneCtrl {
constructor(nav: NavController, view: ViewController) {
this.nav = nav;
this.view = view;
}
}
@Page({
templateUrl: 'tabs/tabs.html'
})
export class TabsPage {
constructor(nav: NavController, params: NavParams) {
this.nav = nav;
}
}