mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-24 14:58:36 +08:00
13 lines
307 B
JavaScript
13 lines
307 B
JavaScript
import {bootstrap} from 'angular2/core';
|
|
import {Component, Template} from 'angular2/angular2';
|
|
import {Tabbar} from 'ionic/components/tabbar/tabbar';
|
|
|
|
@Component({ selector: 'playground-main' })
|
|
@Template({
|
|
url: 'main.html',
|
|
directives: [Tabbar]
|
|
})
|
|
class PlaygroundMain {}
|
|
|
|
bootstrap(PlaygroundMain);
|