2016-09-15 12:40:13 +02:00
|
|
|
import {Component} from "@angular/core";
|
2016-06-06 15:56:19 +02:00
|
|
|
|
2016-09-15 12:40:13 +02:00
|
|
|
import {InputareaComponent} from "./inputarea.component";
|
|
|
|
// import {ConversionType} from "./conversiontype";
|
2016-08-15 17:12:11 +02:00
|
|
|
//import { SelectorComponent } from "./selector.component";
|
|
|
|
|
2016-06-06 15:56:19 +02:00
|
|
|
@Component({
|
2016-08-15 17:12:11 +02:00
|
|
|
selector: "den-app",
|
|
|
|
template: `
|
|
|
|
<div>
|
|
|
|
<den-inputarea></den-inputarea>
|
|
|
|
</div>
|
2016-09-15 12:40:13 +02:00
|
|
|
`
|
2016-06-06 15:56:19 +02:00
|
|
|
})
|
|
|
|
export class AppComponent {
|
2016-09-15 12:40:13 +02:00
|
|
|
// private inputAreas:InputareaComponent[] = [];
|
|
|
|
//
|
|
|
|
// constructor() {
|
|
|
|
// this.inputAreas.push(new InputareaComponent());
|
|
|
|
// }
|
2016-06-06 15:56:19 +02:00
|
|
|
}
|