This commit is contained in:
Max Lynch
2015-05-04 11:29:36 -05:00
parent 631cf190a9
commit 280ee999f0
5 changed files with 56 additions and 3 deletions

View File

@@ -1,12 +1,14 @@
import {Component, View, bootstrap} from 'angular2/angular2'
import {Button} from 'ionic/components/button/button'
import {Button} from 'ionic/ionic'
@Component({ selector: '[ion-app]' })
@View({
templateUrl: 'main.html',
directives: [Button]
})
class IonicApp {}
class IonicApp {
constructor() {
}
}
bootstrap(IonicApp)