mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
13 lines
157 B
TypeScript
13 lines
157 B
TypeScript
import {Directive} from 'angular2/angular2';
|
|
|
|
/**
|
|
* TODO
|
|
*/
|
|
@Directive({
|
|
selector: 'ion-card',
|
|
host: {
|
|
'class': 'card'
|
|
}
|
|
})
|
|
export class Card {}
|