converter/app/app.component.ts

22 lines
514 B
TypeScript
Raw Normal View History

2016-09-15 12:40:13 +02:00
import {Component} from "@angular/core";
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";
@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
`
})
export class AppComponent {
2016-09-15 12:40:13 +02:00
// private inputAreas:InputareaComponent[] = [];
//
// constructor() {
// this.inputAreas.push(new InputareaComponent());
// }
}