bigbuffet-rw/app/soapbox/features/intentional_error/index.tsx
marcin mikołajczak 7a36837585 typescript, FC
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2022-04-12 22:40:09 +02: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;