As a beginner Angular developer, I am looking to automatically fill in text boxes in a form, specifically 10 text boxes (10 rows) using the ngFor directive.
In my research on ngFor examples, I have noticed that most of them focus on populating a list based on an array. However, my goal is different. I want to use ngFor to populate all rows containing text boxes with just one implementation.
Additionally, I want to incorporate the ngModel directive to store the values of the text boxes. How can I achieve this using ngFor?