blob: 93a6fe0f1bbcbe3e2de97f6cae3d3336b9696488 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
import React from 'react';
import { Alert } from '@mui/material';
class ErrorBoundary extends React.Component {
constructor(props) {
super(props);
this.state = {
error: null,
};
}
static getDerivedStateFromError(error) {
return { error };
}
/* eslint-disable react/no-danger */
render() {
const { error } = this.state;
if (error) {
return (
<Alert severity="error">
<code
dangerouslySetInnerHTML={{
__html: error.stack.replaceAll('\n', '<br>').replaceAll(' ', ' '),
}}
/>
</Alert>
);
}
const { children } = this.props;
return children;
}
}
export default ErrorBoundary;
|