mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
594 B
594 B
order | title | ||||
---|---|---|---|---|---|
2 |
|
zh-CN
给评分组件加上文案展示。
en-US
Add copywriting in rate components.
import { Rate } from 'antd';
import React, { useState } from 'react';
const desc = ['terrible', 'bad', 'normal', 'good', 'wonderful'];
const App: React.FC = () => {
const [value, setValue] = useState(3);
return (
<span>
<Rate tooltips={desc} onChange={setValue} value={value} />
{value ? <span className="ant-rate-text">{desc[value - 1]}</span> : ''}
</span>
);
};
export default App;