mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
13 lines
215 B
TypeScript
13 lines
215 B
TypeScript
import {Component, View} from 'angular2/angular2';
|
|
|
|
|
|
@Component({ selector: 'ion-app' })
|
|
@View({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class IonicApp {}
|
|
|
|
export function main(ionicBootstrap) {
|
|
ionicBootstrap(IonicApp);
|
|
}
|