In React.js you better define your method binding in the constructor like this:
constructor(props){
this.poo = this.poo.bind(this);
}
it's better for performance than binding in the render method.
So what about the arrow function
poo = () => {}
Does it affect performance in the render method as well?