Created
September 29, 2021 22:29
-
-
Save Kellswork/fdf886212dc4f9615b09669b7f1615fa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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