ant-design/components/time-picker/demo/without-seconds.md

15 lines
212 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
title: 不展示秒
---
不展示秒,也不允许选择。
````jsx
import { TimePicker } from 'antd';
ReactDOM.render(
<TimePicker defaultValue="12:08:23" format="HH:mm" />
, mountNode);
````