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.
21 lines
542 B
21 lines
542 B
2 years ago
|
import React from 'react';
|
||
|
import { Button, notification } from 'antd';
|
||
|
|
||
|
const openNotification = () => {
|
||
|
notification.open({
|
||
|
message: 'Notification Title',
|
||
|
description:
|
||
|
'This is the content of the notification. This is the content of the notification. This is the content of the notification.',
|
||
|
onClick: () => {
|
||
|
console.log('Notification Clicked!');
|
||
|
},
|
||
|
});
|
||
|
};
|
||
|
const App: React.FC = () => (
|
||
|
<Button type="primary" onClick={openNotification}>
|
||
|
Open the notification box
|
||
|
</Button>
|
||
|
);
|
||
|
|
||
|
export default App;
|