mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
move playground things
This commit is contained in:
14
playground/basic-example/main.js
Normal file
14
playground/basic-example/main.js
Normal file
@@ -0,0 +1,14 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user