You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
415 B
18 lines
415 B
2 years ago
|
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;
|