Guest User

Untitled

a guest
Oct 16th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // Fonction map de Lodash
  2. <ListComponent>
  3. {_.map(this.props.array, object => <span>{object.value}</span>)}
  4. <ListComponent>
  5.  
  6. // Fonction map native
  7. <ListComponent>
  8. {this.props.array.map(object => <span>{object.value}</span>)}
  9. <ListComponent>
Add Comment
Please, Sign In to add comment