mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
11 lines
143 B
TypeScript
11 lines
143 B
TypeScript
import {Component, Directive} from 'angular2/angular2';
|
|
|
|
|
|
@Directive({
|
|
selector: 'ion-label'
|
|
})
|
|
export class Label {
|
|
constructor() {
|
|
}
|
|
}
|