Files
ncd-fe/src/features/intentional-error/index.tsx
marcin mikołajczak cb3a900d39 exports?
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-05-13 19:00:42 +02:00

12 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 };