mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
25 lines
532 B
TypeScript
25 lines
532 B
TypeScript
|
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;
|