19 lines
536 B
TypeScript
19 lines
536 B
TypeScript
import {Component} from "@angular/core";
|
|
|
|
import {InputareaComponent} from "./inputarea.component";
|
|
// import {ConversionType} from "./conversiontype";
|
|
//import { SelectorComponent } from "./selector.component";
|
|
|
|
@Component({
|
|
moduleId: module.id,
|
|
selector: "den-app",
|
|
templateUrl: "app.component.html",
|
|
styleUrls: ["app.component.css"]
|
|
})
|
|
export class AppComponent {
|
|
// private inputAreas:InputareaComponent[] = [];
|
|
//
|
|
// constructor() {
|
|
// this.inputAreas.push(new InputareaComponent());
|
|
// }
|
|
}
|