I\'m rendering a link with react:
render: -> `upvote`
Then, above I hav
This is because those handlers do not preserve scope. From react documentation: react documentation
Check the "no autobinding" section. You should write the handler like: onClick = () => {}