mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 09:49:57 +08:00
28 lines
525 B
TypeScript
28 lines
525 B
TypeScript
|
import React, { useState } from 'react';
|
||
|
import { Alert, Button } from 'antd';
|
||
|
|
||
|
const { ErrorBoundary } = Alert;
|
||
|
const ThrowError: React.FC = () => {
|
||
|
const [error, setError] = useState<Error>();
|
||
|
const onClick = () => {
|
||
|
setError(new Error('An Uncaught Error'));
|
||
|
};
|
||
|
|
||
|
if (error) {
|
||
|
throw error;
|
||
|
}
|
||
|
return (
|
||
|
<Button danger onClick={onClick}>
|
||
|
Click me to throw a error
|
||
|
</Button>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<ErrorBoundary>
|
||
|
<ThrowError />
|
||
|
</ErrorBoundary>
|
||
|
);
|
||
|
|
||
|
export default App;
|