Open member-card.component.html and add the following layout:
Add Member Cards to the Member List Template
Now, we need to update our MemberList to use our cards instead of just our paragraphs with usernames.
In member-list.component.html, move the *ngFor into the parent <div> and replace the paragraph element with <app-member-card>, passing in the user as the input property.
It's starting to come together!
LoadingUserCards
It still could use some more styling, though. We'll work on that next.