mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
16 lines
394 B
JavaScript
16 lines
394 B
JavaScript
console.log('hello');
|
|
import {bootstrap} from 'angular2/core';
|
|
import {Component, Template} from 'angular2/angular2';
|
|
import {Tabbar} from 'ionic/components/tabbar/tabbar';
|
|
|
|
import 'ionic/components/tabbar/mixins/android/android-tabbar';
|
|
|
|
@Component({ selector: '[playground-main]' })
|
|
@Template({
|
|
url: 'main.html',
|
|
directives: [Tabbar]
|
|
})
|
|
class PlaygroundMain {}
|
|
|
|
bootstrap(PlaygroundMain)
|