move playground things

This commit is contained in:
Andrew
2015-03-18 10:56:10 -05:00
parent 4654bcef39
commit 6b37f2c223
9 changed files with 16 additions and 7 deletions

View 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)