feat(ErrorBoundary): add ReactBasicErrorBoundary and ReactErrorBoundary components

* Implemented ReactBasicErrorBoundary for error handling.
* Created ReactErrorBoundary with enhanced error reporting features.
* Updated index file to export both components.
This commit is contained in:
Hein
2026-02-02 13:15:13 +02:00
parent ad2252f5e4
commit a62036bb5a
3 changed files with 312 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
export { default as ReactBasicErrorBoundary } from './BasicErrorBoundary';
export { default as ReactErrorBoundary } from './ErrorBoundary';