mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
567 B
567 B
order | title |
---|---|
2 | 文案展现 |
给评分组件加上文案展示。
import { Rate } from 'antd';
const Rater = React.createClass({
getInitialState() {
return {
value: 3,
count: null,
};
},
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} 星</span>}
</span>
);
},
});
ReactDOM.render(<Rater />, mountNode);