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

22 lines
334 B
Markdown
Raw Normal View History

2015-11-18 12:14:26 +08:00
# 基本
2015-11-16 23:11:41 +08:00
- order: 0
最简单的用法。
---
````jsx
import { Timepicker } from 'antd';
2015-11-16 23:11:41 +08:00
2015-11-19 15:53:40 +08:00
function onChange(time) {
2015-11-26 22:18:14 +08:00
if (time) {
2015-12-08 14:55:28 +08:00
console.log(time.toLocaleTimeString('zh-CN', { hour12: false }));
2015-11-26 22:18:14 +08:00
}
2015-11-19 15:53:40 +08:00
}
2015-11-16 23:11:41 +08:00
ReactDOM.render(
2015-12-08 21:23:07 +08:00
<Timepicker onChange={onChange} />
2015-11-16 23:11:41 +08:00
, document.getElementById('components-timepicker-demo-basic'));
````