mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
615 B
615 B
order | title | ||||
---|---|---|---|---|---|
2 |
|
zh-CN
给评分组件加上文案展示。
en-US
Add copywriting in rate components.
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);