Why must you call super(props) in the constructor of a React class component?
You must call super(props) in the constructor of a React class component to initialize the parent class (Component) and ensure that this.props is defined and accessible within the constructor. If you don't call super(props), this.props will be undefined in the constructor, which can lead to bugs.