Files
2015-05-05 17:10:18 -05:00

16 lines
309 B
JavaScript

import {NgElement, Decorator} from 'angular2/angular2'
import {IonicComponent} from 'ionic/config/component'
@Decorator({
selector: 'ion-label'
})
export class Label {
constructor(
@NgElement() ngElement:NgElement
) {
this.domElement = ngElement.domElement
}
}
new IonicComponent(Label, {
})