bigbuffet-rw/app/soapbox/features/intentional_error/index.js

13 lines
251 B
JavaScript

import React from 'react';
/**
* IntentionalError:
* For testing logging/monitoring & previewing ErrorBoundary design.
*/
export default class IntentionalError extends React.Component {
render() {
throw 'This error is intentional.';
}
}