react-play
react-play copied to clipboard
✨ [Feature request]: Add Error Boundaries
As the application grows, there might be chances that some components are error-prone and result in a blank page issue. so to overcome this issue we should add Error Boundaries that will render the fallback UI when there is an error and the user will be able to go back or try again.
Error boundaries are React components that catch JavaScript errors anywhere in their child component tree, log those errors, and display a fallback UI instead of the component tree that crashed. Read more
cc : @atapas @koustov
sounds great. yes we need error boundary.