ant-design/components/rate/demo/half.md

24 lines
286 B
Markdown
Raw Normal View History

2016-04-01 10:12:02 +08:00
---
order: 1
title:
zh-CN: 半星
en-US: Half star
2016-04-01 10:12:02 +08:00
---
2016-03-31 14:43:38 +08:00
## zh-CN
2016-03-31 14:43:38 +08:00
支持选中半星。
## en-US
Support select half star.
```tsx
2016-03-31 14:43:38 +08:00
import { Rate } from 'antd';
2022-05-23 14:37:16 +08:00
import React from 'react';
2016-03-31 14:43:38 +08:00
const App: React.FC = () => <Rate allowHalf defaultValue={2.5} />;
export default App;
2019-05-07 14:57:32 +08:00
```