mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 23:59:12 +08:00
d8d53f14cf
Co-authored-by: afc163 <afc163@gmail.com>
18 lines
398 B
TypeScript
18 lines
398 B
TypeScript
import React, { useState } from 'react';
|
|
import { Space, Rate } from 'antd';
|
|
|
|
const desc = ['terrible', 'bad', 'normal', 'good', 'wonderful'];
|
|
|
|
const App: React.FC = () => {
|
|
const [value, setValue] = useState(3);
|
|
|
|
return (
|
|
<Space>
|
|
<Rate tooltips={desc} onChange={setValue} value={value} />
|
|
{value ? <span>{desc[value - 1]}</span> : ''}
|
|
</Space>
|
|
);
|
|
};
|
|
|
|
export default App;
|