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.
17 lines
332 B
17 lines
332 B
2 years ago
|
import React from 'react';
|
||
|
import { NotificationOutlined } from '@ant-design/icons';
|
||
|
import { Badge } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
<Badge dot>
|
||
|
<NotificationOutlined style={{ fontSize: 16 }} />
|
||
|
</Badge>
|
||
|
<Badge dot>
|
||
|
<a href="#">Link something</a>
|
||
|
</Badge>
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|