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

13 lines
268 B
JavaScript

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