Guest User

Untitled

a guest
Apr 29th, 2021
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const RecipientsTableBody = ({ data, status, onRecipientUpdate }) => {
  2.   return (
  3.     <TableBody>
  4.       {data.map((recipient, index) => (
  5.         <RecipientTableRow
  6.           onSave={onRecipientUpdate}
  7.           index={index}
  8.           key={recipient.id}
  9.           row={recipient}
  10.           status={status}
  11.         />
  12.       ))}
  13.     </TableBody>
  14.   );
  15. };
Advertisement
Add Comment
Please, Sign In to add comment