Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. const actionList = actions.map(({
  2. fullName,
  3. subject,
  4. price,
  5. value,
  6. product,
  7. createdAt
  8. }) => ({
  9. key: fullName,
  10. product: formatMessage(modalMessages[product]),
  11. subject,
  12. price,
  13. value,
  14. createdAt: moment(createdAt).format('ddd, D MMMM YYYY, H:mm'),
  15. });
  16. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement