Q1011. What is the difference between `super()` and `super(props)` in React using ES6 classes?
When you want to access `this.props` in `constructor()` then you should pass props to `super()` method. **Using `super(props)`:** ```javascript class MyComponent extends ...