I\'m trying to add an onScroll event on a table. This is what I\'ve tried:
onScroll
componentDidMount() { ReactDOM.findDOMNode(this.refs.table).addEv
You need to bind this to the element in context.
render() { return ( [...] ) }