converter/app/app.component.ts

20 lines
536 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({
moduleId: module.id,
2016-08-15 17:12:11 +02:00
selector: "den-app",
templateUrl: "app.component.html",
styleUrls: ["app.component.css"]
})
export class AppComponent {
2016-09-15 12:40:13 +02:00
// private inputAreas:InputareaComponent[] = [];
//
// constructor() {
// this.inputAreas.push(new InputareaComponent());
// }
}