Binding methods with React
Why you shouldn’t bind your event handler’s in render, and where you should bind them instead.
One of the most common things I see in React codebases is binding event handlers in the render calls. It’s not surprising when React’s docs in fact use this…