Forwarding formControlName to inner component in Angular
问题 I have one custom control component <some-input> that i wrapped to <ext-some-input> . SomeInput is encapsulated, has own API and supports reactive forms. ExtSomeInput is created as high-level wrapper over SomeInput . I have following html: <form [formGroup]="form"> <ext-some-input formControlName="name"> </form> and ExtSomeInput 's html: <some-input formControlName="_???_"></some-input> The question is how to forward formControlName to inner SomeInput component? I need to tie the form and