I would like to create an editable table with FormArray.
For this, I have the results attribute that is rendered in the table.
What's the proper way to initialize it with FormArray data?
results: Array;
tableForm: FormGroup;
ngOnInit(private fb: FormBuilder) {
this.tableForm = this.fb.group({
arrayForm: this.fb.array([])
});
}