ant-design/components/time-picker/demo/without-seconds.md
2016-07-26 11:03:44 +08:00

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);
````