You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
615 B

---
order: 2
title:
zh-CN: 文案展现
en-US: Show copywriting
---
## zh-CN
给评分组件加上文案展示。
## en-US
Add copywriting in rate components.
````jsx
import { Rate } from 'antd';
class Rater extends React.Component {
state = {
value: 3,
}
handleChange = (value) => {
this.setState({ value });
}
render() {
const { value } = this.state;
return (
<span>
<Rate onChange={this.handleChange} value={value} />
{value && <span className="ant-rate-text">{value} stars</span>}
</span>
);
}
}
ReactDOM.render(<Rater />, mountNode);
````