Files
Andrew 14ecc7178b wip
2015-04-25 13:07:53 -05:00

14 lines
247 B
JavaScript

import {Component, View as NgView, bootstrap} from 'angular2/angular2';
@Component({ selector: '[ion-app]' })
@NgView({
templateUrl: 'main.html'
})
class IonicApp {
constructor() {
console.log('IonicApp Start')
}
}
bootstrap(IonicApp)