mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
35 lines
594 B
Markdown
35 lines
594 B
Markdown
---
|
|
order: 2
|
|
title:
|
|
zh-CN: 文案展现
|
|
en-US: Show copywriting
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
给评分组件加上文案展示。
|
|
|
|
## en-US
|
|
|
|
Add copywriting in rate components.
|
|
|
|
```tsx
|
|
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;
|
|
```
|