ant-design/components/rate/demo/text.md

35 lines
594 B
Markdown
Raw Normal View History

2016-04-01 10:12:02 +08:00
---
order: 2
title:
zh-CN: 文案展现
en-US: Show copywriting
2016-04-01 10:12:02 +08:00
---
2016-03-31 14:43:38 +08:00
## zh-CN
2016-03-31 14:43:38 +08:00
给评分组件加上文案展示。
## en-US
Add copywriting in rate components.
```tsx
2016-03-31 14:43:38 +08:00
import { Rate } from 'antd';
2022-05-23 14:37:16 +08:00
import React, { useState } from 'react';
2016-03-31 14:43:38 +08:00
2018-12-28 16:04:05 +08:00
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;
2019-05-07 14:57:32 +08:00
```