11 lines
262 B
TypeScript
11 lines
262 B
TypeScript
import React from 'react';
|
|
|
|
/**
|
|
* IntentionalError:
|
|
* For testing logging/monitoring & previewing ErrorBoundary design.
|
|
*/
|
|
const IntentionalError: React.FC = () => {
|
|
throw new Error('This error is intentional.');
|
|
};
|
|
|
|
export { IntentionalError as default };
|