Multiple Component Calls in Angular
In the parent template, you can call the same component multiple times, passing it different data to display:
<user-data name="user1" age="25"></user-data>
<user-data name="user2" age="26"></user-data>
<user-data name="user3" age="27"></user-data>
Call your product component multiple times, passing a new value for the product name and price each time.