mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
29 lines
667 B
TypeScript
29 lines
667 B
TypeScript
|
import { CommentOutlined, CustomerServiceOutlined } from '@ant-design/icons';
|
||
|
import { FloatButton, Switch } from 'antd';
|
||
|
import React, { useState } from 'react';
|
||
|
|
||
|
const App: React.FC = () => {
|
||
|
const [open, setOpen] = useState(true);
|
||
|
|
||
|
const onChange = (checked: boolean) => {
|
||
|
setOpen(checked);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<FloatButton.Group
|
||
|
open={open}
|
||
|
trigger="click"
|
||
|
style={{ right: 24 }}
|
||
|
icon={<CustomerServiceOutlined />}
|
||
|
>
|
||
|
<FloatButton />
|
||
|
<FloatButton icon={<CommentOutlined />} />
|
||
|
</FloatButton.Group>
|
||
|
<Switch onChange={onChange} checked={open} />
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|