mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
16 lines
267 B
Markdown
16 lines
267 B
Markdown
# 不展示秒
|
|
|
|
- order: 2
|
|
|
|
不展示秒,也不允许选择。
|
|
|
|
---
|
|
|
|
````jsx
|
|
import { Timepicker } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<Timepicker defaultValue="12:08:23" format="HH:mm" />
|
|
, document.getElementById('components-timepicker-demo-without-seconds'));
|
|
````
|