converter/src/app/app.component.html

8 lines
333 B
HTML

<div *ngFor="let step of steps" class="inputwrapper">
<app-text-input-field [step]="step" #ti></app-text-input-field>
<app-converter-selector [step]="step" [textInput]="ti"></app-converter-selector>
<app-error-message [step]="step"></app-error-message>
</div>
<app-version></app-version>
<!--<router-outlet></router-outlet>-->