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.
46 lines
958 B
46 lines
958 B
import React from 'react';
|
|
import { Button, Modal, Space } from 'antd';
|
|
|
|
const info = () => {
|
|
Modal.info({
|
|
title: 'This is a notification message',
|
|
content: (
|
|
<div>
|
|
<p>some messages...some messages...</p>
|
|
<p>some messages...some messages...</p>
|
|
</div>
|
|
),
|
|
onOk() {},
|
|
});
|
|
};
|
|
|
|
const success = () => {
|
|
Modal.success({
|
|
content: 'some messages...some messages...',
|
|
});
|
|
};
|
|
|
|
const error = () => {
|
|
Modal.error({
|
|
title: 'This is an error message',
|
|
content: 'some messages...some messages...',
|
|
});
|
|
};
|
|
|
|
const warning = () => {
|
|
Modal.warning({
|
|
title: 'This is a warning message',
|
|
content: 'some messages...some messages...',
|
|
});
|
|
};
|
|
|
|
const App: React.FC = () => (
|
|
<Space wrap>
|
|
<Button onClick={info}>Info</Button>
|
|
<Button onClick={success}>Success</Button>
|
|
<Button onClick={error}>Error</Button>
|
|
<Button onClick={warning}>Warning</Button>
|
|
</Space>
|
|
);
|
|
|
|
export default App;
|
|
|