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