In Angular 2+ versions, how can I solve a problem like this?
I have some data, what I got from the server. I iterate over the array of data,and I want to display each objects. So (for example) if I have a list of the registrated users, and I want to display a list of the users, what is the correct solution?
1, I need an another Angular component for the list elements (which contains the user informations, and the related functions) 2,or I just use a simple loop, and parse data to a template?