I am facing issue in binding the response values to input type text in a ngFor loop.
<div *ngFor = "let item of items">
<input type="text" class="form-control" #inputTarget>
<div>
if I bind, all the text box binding same values. how should bind different item values to each text box
itemsstring variables? (2) Are these controls inside of aformtag?