I am learning react from Bob Ziroll's tutorial and there is a code
<Die key={die.id} value={die.value} isHeld={die.isHeld} holdDice={() => holdDice(die.id)}/>
the part
holdDice={() => holdDice(die.id)}
works
but when i try
holdDice={holdDice(die.id)}
it doesn't work. I can't get the reasoning of this.