Files
Max Lynch 77838300b7 Stuff
2015-05-04 09:29:04 -05:00

23 lines
388 B
JavaScript

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