mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
19 lines
317 B
JavaScript
19 lines
317 B
JavaScript
import {Component, View, bootstrap} from 'angular2/angular2'
|
|
import {Nav} from 'ionic/ionic'
|
|
import {SignInPage} from 'pages/sign-in'
|
|
|
|
|
|
@Component({
|
|
selector: '[ion-app]',
|
|
})
|
|
@View({
|
|
templateUrl: 'main.html',
|
|
directives: [Nav]
|
|
})
|
|
class App {
|
|
constructor() {
|
|
this.initial = SignInPage
|
|
}
|
|
}
|
|
bootstrap(App)
|