Aug 23, 2017 · 1 min read
Is extracting the map function into `renderUser` important as well? Or could you still have:
this.state.users.map( user => {
return <User
key={user.id}
name={user.name}
onDeleteClick={this.deleteUser} />
})
Or is that arrow function bad as well?
