Files
Andrew 14ecc7178b wip
2015-04-25 13:07:53 -05:00

21 lines
402 B
JavaScript

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