How are error boundaries handled in React v15?
- Error boundaries are handled the same way as in React v16
- Error boundaries are not supported in class components
- Error boundaries are not supported in functional components
- React v15 does not support error boundaries
Error boundaries were not supported in React v15. Error handling in React v15 was less robust and could lead to the entire application crashing if an error occurred during rendering.
Loading...