I\'ve read the ReactJS documentation about setState. Specifically, this line:
NEVER mutate this.state directly, as calling setState() afterwa
The main reason is that shouldComponentUpdate will not work correctly.