vincular ao construtor
constructor(props) {
super(props);
this.handleChange = this.handleChange.bind(this) //example binding f(x) called handleChange
this.handleRefreshClick = this.handleRefreshClick.bind(this) //example binding f(x) called handleRefreshClick
}
Janelly =)