I am new to react, so I don\'t know much about it. I am trying to add a click handler to a li but the function seems to be undefined?
var ActivityList = Reac
You can also use an arrow function to avoid binding this in the function at all:
this
this.props.data.map(game => {game.name} )