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.
40 lines
803 B
40 lines
803 B
import React from 'react';
|
|
import { Button, message, Space } from 'antd';
|
|
|
|
const App: React.FC = () => {
|
|
const [messageApi, contextHolder] = message.useMessage();
|
|
|
|
const success = () => {
|
|
messageApi.open({
|
|
type: 'success',
|
|
content: 'This is a success message',
|
|
});
|
|
};
|
|
|
|
const error = () => {
|
|
messageApi.open({
|
|
type: 'error',
|
|
content: 'This is an error message',
|
|
});
|
|
};
|
|
|
|
const warning = () => {
|
|
messageApi.open({
|
|
type: 'warning',
|
|
content: 'This is a warning message',
|
|
});
|
|
};
|
|
|
|
return (
|
|
<>
|
|
{contextHolder}
|
|
<Space>
|
|
<Button onClick={success}>Success</Button>
|
|
<Button onClick={error}>Error</Button>
|
|
<Button onClick={warning}>Warning</Button>
|
|
</Space>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|