[Solved] How to merge two buttons into one?


Instead of merging the two buttons, the same could be performed using JSX callback. See solution on the other posting at Conditional disabling of button

The undefined return came from the callback. It needs to be bound before (in this case) passing to the button.

See some of the other approaches suggested: How to use ternary operator in the render method in reactjs?

solved How to merge two buttons into one?