Files
2015-05-04 09:17:17 -05:00

21 lines
390 B
JavaScript

import {NgElement, Component, View} from 'angular2/angular2'
import {IonicComponent} from 'ionic/config/component'
@Component({
selector: 'ion-list'
})
@View({
template: `<content></content>`
})
export class List {
constructor(
ngElement: NgElement
) {
this.domElement = ngElement.domElement;
this.config = List.config.invoke(this)
}
}
new IonicComponent(List, {})