Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const RecipientsTableBody = ({ data, status, onRecipientUpdate }) => {
- return (
- <TableBody>
- {data.map((recipient, index) => (
- <RecipientTableRow
- onSave={onRecipientUpdate}
- index={index}
- key={recipient.id}
- row={recipient}
- status={status}
- />
- ))}
- </TableBody>
- );
- };
Advertisement
Add Comment
Please, Sign In to add comment