bigbuffet-rw/app/soapbox/features/intentional-error/index.tsx
2022-11-15 14:00:40 -05:00

11 lines
244 B
TypeScript

import React from 'react';
/**
* IntentionalError:
* For testing logging/monitoring & previewing ErrorBoundary design.
*/
const IntentionalError: React.FC = () => {
throw 'This error is intentional.';
};
export default IntentionalError;