--- order: 2 title: zh-CN: 文案展现 en-US: Show copywriting --- ## zh-CN 给评分组件加上文案展示。 ## en-US Add copywriting in rate components. ```tsx import { Rate } from 'antd'; import React, { useState } from 'react'; const desc = ['terrible', 'bad', 'normal', 'good', 'wonderful']; const App: React.FC = () => { const [value, setValue] = useState(3); return ( {value ? {desc[value - 1]} : ''} ); }; export default App; ```