mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
15 lines
264 B
JavaScript
15 lines
264 B
JavaScript
import {Component, Directive} from 'angular2/src/core/annotations_impl/annotations';
|
|
|
|
import {IonicComponent} from 'ionic/config/component'
|
|
|
|
|
|
@Directive({
|
|
selector: 'ion-label'
|
|
})
|
|
export class Label {
|
|
constructor() {
|
|
}
|
|
}
|
|
// new IonicComponent(Label, {
|
|
// })
|