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

17 lines
323 B
JavaScript

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