We connect to REST API, receive contacts, show contact list in the table and show datails of selected contact.
- Model - interface Contact {gender, name, location, email, etc.}
- Service - Contact. Used for receiving data from REST API
-
- contact-list Component. Used for subscribe method to Contact service and displaying data in table.
- contact-card Component. Shows details of selected contact. Data is received from parent Component (contact-list)
- contact-app Component and others