I have a parent form, and a child for within a main component. I am trying to get the main component to read the data from the parent form, but am getting an error: cyclic object value in the console.
My guess is that it is the parent form being defined in form-one and form-two, but I don't know how to do the following:
1) create a nested reactive form (form-two) that is shared with the
parent form (form-one)
2) Allow the main component to access the
form value of the parent and nested form.
My stackblitz example: https://stackblitz.com/edit/angular-dkddez
What am I doing wrong?