If I write like this, click button works
<Menu.Item
key={book.uid}
onClick={() => this.changeColor(book)}
>
But if I write like this:
onClick={this.changeName(book)}
the click doesn't work.
So if the function has arguments, I should use "() => xxx(argument); otherwise, I can just use "this.xxx", right?