Files
ncd-fe/src/features/intentional-error/index.tsx
2023-10-21 18:27:55 -05:00

12 lines
255 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 default IntentionalError;