Last active
November 12, 2021 20:19
-
-
Save dontpaniclabsgists/25ffeb628f64dc7b0bf7d1137a2f0ebc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ng-container formArrayName="admins"> | |
<ng-container *ngFor="let adminForm of admins.controls; let index = index"> | |
<div [formGroupName]="adminForm"> | |
<input id="name" type="text" formControlName="name" /> | |
<input id="email" type="text" formControlName="email" /> | |
</div> | |
</ng-container> | |
</ng-container> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment