darth_victor

Untitled

Sep 17th, 2019
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. onItemClick(itemId){
  2. ....
  3. }
  4.  
  5. render() {
  6. return this.props.largeList.map(item => <SomePureComponent key={item.id}
  7. onClick={(id) => this.onItemClick(id)}
  8. />);
  9. }
  10. ...
Advertisement
Add Comment
Please, Sign In to add comment