Trying to dynamically add a new formControl entry to my formGroup in Angular.
method() { this.testForm.addControl(\'n
simple use:
this.testForm.addControl('new', this.fb.group({ name: ['', Validators.required] }));