mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 15:19:58 +08:00
79 lines
2.0 KiB
TypeScript
79 lines
2.0 KiB
TypeScript
|
import React from 'react';
|
||
|
import {
|
||
|
BorderBottomOutlined,
|
||
|
BorderTopOutlined,
|
||
|
RadiusBottomleftOutlined,
|
||
|
RadiusBottomrightOutlined,
|
||
|
RadiusUpleftOutlined,
|
||
|
RadiusUprightOutlined,
|
||
|
} from '@ant-design/icons';
|
||
|
import { Button, Divider, notification, Space } from 'antd';
|
||
|
import type { NotificationPlacement } from 'antd/es/notification/interface';
|
||
|
|
||
|
const App: React.FC = () => {
|
||
|
const [api, contextHolder] = notification.useNotification();
|
||
|
|
||
|
const openNotification = (placement: NotificationPlacement) => {
|
||
|
api.info({
|
||
|
message: `Notification ${placement}`,
|
||
|
description:
|
||
|
'This is the content of the notification. This is the content of the notification. This is the content of the notification.',
|
||
|
placement,
|
||
|
});
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
{contextHolder}
|
||
|
<Space>
|
||
|
<Button type="primary" onClick={() => openNotification('top')} icon={<BorderTopOutlined />}>
|
||
|
top
|
||
|
</Button>
|
||
|
<Button
|
||
|
type="primary"
|
||
|
onClick={() => openNotification('bottom')}
|
||
|
icon={<BorderBottomOutlined />}
|
||
|
>
|
||
|
bottom
|
||
|
</Button>
|
||
|
</Space>
|
||
|
<Divider />
|
||
|
<Space>
|
||
|
<Button
|
||
|
type="primary"
|
||
|
onClick={() => openNotification('topLeft')}
|
||
|
icon={<RadiusUpleftOutlined />}
|
||
|
>
|
||
|
topLeft
|
||
|
</Button>
|
||
|
<Button
|
||
|
type="primary"
|
||
|
onClick={() => openNotification('topRight')}
|
||
|
icon={<RadiusUprightOutlined />}
|
||
|
>
|
||
|
topRight
|
||
|
</Button>
|
||
|
</Space>
|
||
|
<Divider />
|
||
|
<Space>
|
||
|
<Button
|
||
|
type="primary"
|
||
|
onClick={() => openNotification('bottomLeft')}
|
||
|
icon={<RadiusBottomleftOutlined />}
|
||
|
>
|
||
|
bottomLeft
|
||
|
</Button>
|
||
|
<Button
|
||
|
type="primary"
|
||
|
onClick={() => openNotification('bottomRight')}
|
||
|
icon={<RadiusBottomrightOutlined />}
|
||
|
>
|
||
|
bottomRight
|
||
|
</Button>
|
||
|
</Space>
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|