As a newcomer to Angular 2, I have encountered a challenge with forms that contain multiple text boxes, checkboxes, labels, and drop-downs. When including all these controls in my HTML, the page becomes too long. To address this issue, I would like to create separate components for each control and then use them as selectors within my main component's HTML file.
However, I am unsure how to access the value of each control if I have 10 text boxes, 10 drop-down menus, and multiple labels. Does anyone have experience or knowledge regarding this matter?
If I were to use ngModel for each separate component, how would I go about accessing the values for each individual control?