pleroma/src/features/intentional-error/index.tsx

12 lines
255 B
TypeScript
Raw Normal View History

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;