mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-28 11:08:30 +08:00
23 lines
334 B
Markdown
23 lines
334 B
Markdown
---
|
|
order: 3
|
|
title:
|
|
zh-CN: 不展示秒
|
|
en-US: Hide the seconds options
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
不展示秒,也不允许选择。
|
|
|
|
## en-US
|
|
|
|
The `seconds` options are hidden and cannot be selected.
|
|
|
|
````jsx
|
|
import { TimePicker } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<TimePicker defaultValue="12:08:23" format="HH:mm" />
|
|
, mountNode);
|
|
````
|