You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
532 B
25 lines
532 B
2 years ago
|
import React from 'react';
|
||
|
import { Button, message } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => {
|
||
|
const [messageApi, contextHolder] = message.useMessage();
|
||
|
|
||
|
const success = () => {
|
||
|
messageApi.open({
|
||
|
type: 'loading',
|
||
|
content: 'Action in progress..',
|
||
|
duration: 0,
|
||
|
});
|
||
|
// Dismiss manually and asynchronously
|
||
|
setTimeout(messageApi.destroy, 2500);
|
||
|
};
|
||
|
return (
|
||
|
<>
|
||
|
{contextHolder}
|
||
|
<Button onClick={success}>Display a loading indicator</Button>
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|