Passing props to super

ref – https://stackoverflow.com/questions/30571875/whats-the-difference-between-super-and-superprops-in-react-when-using-e

There is only one reason when one needs to pass props to super(): When you want to access this.props in constructor.

Passing:

Not passing:

Note that passing or not passing props to super has no effect on later uses of this.props outside constructor.

That is render, shouldComponentUpdate, or event handlers always have access to it.