Angular 7: "Cannot find control with unspecified name attribute"
You shouldn't use FormArrayName and FormGroupName on the same element:
<div class="row" formArrayName="items" *ngFor="let item of items.controls; let i = index;">
<div class="form-group" [formGroupName]="i" >
Ng-run Example