mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
19 lines
383 B
JavaScript
19 lines
383 B
JavaScript
import {bootstrap} from 'angular2/core';
|
|
import {Component, Template} from 'angular2/angular2';
|
|
import {Aside, AsideParent} from 'ionic2/components/aside/aside';
|
|
|
|
@Component({
|
|
selector: '[my-app]'
|
|
})
|
|
@Template({
|
|
url: 'main.html',
|
|
directives: [Aside, AsideParent]
|
|
})
|
|
class PlaygroundMain {
|
|
constructor() {
|
|
console.log('Playground Start')
|
|
}
|
|
}
|
|
|
|
bootstrap(PlaygroundMain)
|