ant-design/components/timepicker/demo/basic.md

17 lines
224 B
Markdown
Raw Normal View History

2015-11-16 23:11:41 +08:00
基本
====
- order: 0
最简单的用法。
---
````jsx
import { Timepicker } from 'antd';
2015-11-16 23:11:41 +08:00
ReactDOM.render(
<Timepicker defaultValue="12:08:23" />
2015-11-16 23:11:41 +08:00
, document.getElementById('components-timepicker-demo-basic'));
````