DEV Community

Discussion on: React 16 Error Boundaries Let You Recover Gracefully

Collapse
 
giladpeleg profile image
Gilad Peleg

You forgot to add:

   if (this.state.errorInfo) {
         return (
           <div>Something went wrong!</div>
         );
       }
    return this.props.children;

Otherwise the inner component does not get rendered

Collapse
 
mostlyjason profile image
Jason Skowronski

Good catch! Not sure how I forgot that but I just added it.