I need multiple forms in a table that is generated dynamically using a template-driven form, it works well the way that I did it, but I'm not sure it's correct.
<div *ngFor="let row of rows">
<form #f="ngForm" (submit)="submit(f)">
...
</form>
</div>
the #f will be defined many times and I'm wondering if that could cause an issue? I could eventually give a dynamic naming (if that's possible?), but as it works this way I don't want to overcomplicate it.