Files
2015-05-30 12:46:20 -05:00

16 lines
387 B
JavaScript

import {ElementRef} from 'angular2/angular2'
import {Component} from 'angular2/src/core/annotations_impl/annotations';
import {View} from 'angular2/src/core/annotations_impl/view';
@Component({
selector: 'ion-view',
})
@View({
template: `<content></content>`
})
export class ViewContainer {
constructor(elementRef: ElementRef) {
this.domElement = elementRef.domElement;
}
}