Components code is:
this.orderForm = this.formBuilder.group({
items: this.formBuilder.array([])
});
Form is:
<form [formGroup]="orderForm">
<div
class="form-group"
formArrayName="items"
*ngFor="let item of orderForm.get('items').controls; let i = index"
>
</div>
</form>
I get error message:
Property 'controls' does not exist on type 'AbstractControl'.
How can I fix it: