Greetings! Hope you're doing well 
I need a little help with an implementation I'm doing with FormGroup and FormControlName. I'm developing an app where I created the Modal component (which has a form) and FormField component. This is in order to reuse the modal aand to reuse the form fields which is most likely the case in most applications, and to do some boilerplate since I'm using a library (TaigaUI). I'm using ReactiveFormsModule for forms handling and defined the form group attribute in the modal component, which instantiates the FormField that would represente each individual formControlName from the form.
The thing is that I've been encountering some errors, I did some research and apparently, I need to implement the ControlValueAccesor interface in order to achieve this, but even so I don't see the way to get the value the user types on the inputs from the child component all the way up to the parent component. Here's the code: