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

40 lines
632 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.
2017-02-13 10:55:53 +08:00
````jsx
2016-03-31 14:43:38 +08:00
import { Rate } from 'antd';
class Rater extends React.Component {
state = {
value: 3,
count: null,
}
handleChange = (value) => {
2016-03-31 14:43:38 +08:00
this.setState({ value });
}
2016-03-31 14:43:38 +08:00
render() {
const { value } = this.state;
return (
<span>
<Rate onChange={this.handleChange} value={value} />
2016-09-22 10:42:23 +08:00
{value && <span className="ant-rate-text">{value} stars</span>}
2016-03-31 14:43:38 +08:00
</span>
);
}
}
2016-03-31 14:43:38 +08:00
ReactDOM.render(<Rater />, mountNode);
````