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.
24 lines
502 B
24 lines
502 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: 'success',
|
||
|
content: 'This is a prompt message for success, and it will disappear in 10 seconds',
|
||
|
duration: 10,
|
||
|
});
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
{contextHolder}
|
||
|
<Button onClick={success}>Customized display duration</Button>
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|