mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
bd505a690c
* feat: CP support Tag closeIcon * fix: fix * fix: fix
17 lines
418 B
TypeScript
17 lines
418 B
TypeScript
import React, { useState } from 'react';
|
|
import { Flex, Rate } from 'antd';
|
|
|
|
const desc = ['terrible', 'bad', 'normal', 'good', 'wonderful'];
|
|
|
|
const App: React.FC = () => {
|
|
const [value, setValue] = useState(3);
|
|
return (
|
|
<Flex gap="middle" vertical>
|
|
<Rate tooltips={desc} onChange={setValue} value={value} />
|
|
{value ? <span>{desc[value - 1]}</span> : null}
|
|
</Flex>
|
|
);
|
|
};
|
|
|
|
export default App;
|