const Content = ({ peopleToShow, handleDelete }) => { return (
{peopleToShow.map((item) =>

  • {item.name} {item.number}  
  • )}
    ) } export default Content