ant-design/components/datepicker/demo/time.md
afc163 753c01ae18 ES6 syntax for demo code
fix antd.notification
2015-10-28 20:55:49 +08:00

17 lines
263 B
Markdown

# 时间选择
- order: 4
准确到秒的时间选择面板。
---
````jsx
import { Datepicker } from 'antd';
ReactDOM.render(
<Datepicker showTime={true} format="yyyy-MM-dd HH:mm:ss" />
, document.getElementById('components-datepicker-demo-time'));
````