--- order: 2 title: zh-CN: 文案展现 en-US: Show copywriting --- ## zh-CN 给评分组件加上文案展示。 ## en-US Add copywriting in rate components. ```jsx import { Rate } from 'antd'; const desc = ['terrible', 'bad', 'normal', 'good', 'wonderful']; class Rater extends React.Component { state = { value: 3, }; handleChange = value => { this.setState({ value }); }; render() { const { value } = this.state; return ( {value ? {desc[value - 1]} : ''} ); } } ReactDOM.render(, mountNode); ```