mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
18 lines
415 B
TypeScript
18 lines
415 B
TypeScript
|
import React, { useState } from 'react';
|
||
|
import { Rate } from 'antd';
|
||
|
|
||
|
const desc = ['terrible', 'bad', 'normal', 'good', 'wonderful'];
|
||
|
|
||
|
const App: React.FC = () => {
|
||
|
const [value, setValue] = useState(3);
|
||
|
|
||
|
return (
|
||
|
<span>
|
||
|
<Rate tooltips={desc} onChange={setValue} value={value} />
|
||
|
{value ? <span className="ant-rate-text">{desc[value - 1]}</span> : ''}
|
||
|
</span>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|