mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
22 lines
410 B
JavaScript
22 lines
410 B
JavaScript
import {Component, Directive} from 'angular2/src/core/annotations_impl/annotations';
|
|
import {View} from 'angular2/src/core/annotations_impl/view';
|
|
|
|
import {IonicComponent} from 'ionic/config/component'
|
|
|
|
|
|
@Component({
|
|
selector: 'ion-list, [ion-list]'
|
|
})
|
|
@View({
|
|
template: `<content></content>`
|
|
})
|
|
export class List {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|
|
// new IonicComponent(List, {
|
|
// propClasses: ['inset']
|
|
// })
|