App annotation/mode attribute

This commit is contained in:
Adam Bradley
2015-07-08 14:05:37 -05:00
parent 9d2570d2e5
commit 40fc77b0b6
112 changed files with 625 additions and 1466 deletions

View File

@ -1,20 +0,0 @@
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);
}