()
| 74 | } |
| 75 | |
| 76 | render() { |
| 77 | const { error, errorInfo } = this.state; |
| 78 | |
| 79 | const { errorReporter: ErrorReporter = configuration.errorReporter || EmptyErrorPlaceholder } = this.props; |
| 80 | |
| 81 | if (error && this.props.errorBoundary) { |
| 82 | return <ErrorReporter error={error} errorInfo={errorInfo} component={this} />; |
| 83 | } |
| 84 | |
| 85 | if (this.hotComponentUpdate) { |
| 86 | this.hotComponentUpdate(); |
nothing calls this directly
no outgoing calls
no test coverage detected