mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
15 lines
330 B
JavaScript
15 lines
330 B
JavaScript
import {Component, Directive} from 'angular2/src/core/annotations_impl/annotations';
|
|
import {View} from 'angular2/src/core/annotations_impl/view';
|
|
|
|
|
|
@Component({ selector: 'ion-view' })
|
|
@View({
|
|
templateUrl: 'main.html',
|
|
directives: []
|
|
})
|
|
class IonicApp {}
|
|
|
|
export function main(ionicBootstrap) {
|
|
ionicBootstrap(IonicApp);
|
|
}
|