mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
21 lines
542 B
TypeScript
21 lines
542 B
TypeScript
|
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;
|