Skip to content

Instantly share code, notes, and snippets.

@Kellswork
Created September 29, 2021 22:29
Show Gist options
  • Save Kellswork/fdf886212dc4f9615b09669b7f1615fa to your computer and use it in GitHub Desktop.
Save Kellswork/fdf886212dc4f9615b09669b7f1615fa to your computer and use it in GitHub Desktop.
export default function UserList({contacts}) {
return (
<div>
{props.contactList.map((contact) => (
<div className="card" key={contact.phonenumber}>
<p className="card-name">{contact.name}</p>
<p>{contact.email}</p>
<p>{contact.phonenumber}</p>
</div>
))}
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment