I have this imbrication of component
<form [formGroup]="form" novalidate autocomplete="off" (ngSubmit)="onSubmit()">
<app-form-field label="Input" [required]="true" [control]="form.controls['input']">
<app-input formControlName="input"></app-input>
</app-form-field>
</form>
How can i remove the app-input angular selector and just keeping input tag please?
I need this for works with ~ or > css operator
Thanks for your help

You can't remove the
<app-input>selector, but there may be other solutions to your problem:<app-input>that you need, just replace this with a native<input>.formControlNamewill work on native<input>tags out of the box (as long as you have imported theReactiveFormsModule), you don't always need a componentapp-inputcomponent>or~to specifically target the elements you want to style no matter how they are nested