Contact Manager | People List

PHOTO EMBED

Sat Apr 17 2021 19:48:37 GMT+0000 (Coordinated Universal Time)

Saved by @Ivan2u #react.js

function PeopleList(props) {
  const arr = props.data;
  const listItems = arr.map((val, index) =>
    <li key={index}>{val}</li>
  );
  return <ul>{listItems}</ul>;
}
content_copyCOPY

https://www.sololearn.com/learning/1097/3381/7655/1