Files
2015-07-03 13:19:30 -05:00

21 lines
312 B
TypeScript

import {Component} from 'angular2/angular2';
import {IonicView} from 'ionic/ionic';
@Component({
selector: 'ion-app'
})
@IonicView({
templateUrl: 'main.html'
})
class IonicApp {
constructor() {
this.items = [1, 2, 3, 4, 5]
}
}
export function main(ionicBootstrap) {
ionicBootstrap(IonicApp);
}