mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-15 17:19:11 +08:00
753c01ae18
fix antd.notification
17 lines
263 B
Markdown
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'));
|
|
````
|
|
|