You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Default props declared on a base class are not found by inheriting classes in IE10. This was observed in react 0.14.7 and 15.1.0. The example and codepen below should help reproduce.
classTestBaseextendsReact.Component{constructor(props){super(props);}}TestBase.defaultProps={message: 'this is a test message',};classTestextendsTestBase{constructor(props){super(props);}render(){return<div>{this.props.message}</div>;}}ReactDOM.render(<Test/>,document.querySelector('main'));