ant-design/components/time-picker/demo/basic.md

25 lines
414 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title:
2016-07-26 11:03:44 +08:00
zh-CN: 基本
en-US: Basic
2016-03-31 09:40:55 +08:00
---
2015-11-16 23:11:41 +08:00
2016-07-26 11:03:44 +08:00
## zh-CN
2016-11-11 16:06:11 +08:00
点击 TimePicker然后可以在浮层中选择或者输入某一时间。
2015-11-16 23:11:41 +08:00
## en-US
2016-07-26 11:03:44 +08:00
2016-11-11 16:06:11 +08:00
Click `TimePicker`, and then we could select or input a time in panel.
2016-07-26 11:03:44 +08:00
2015-11-16 23:11:41 +08:00
````jsx
import { TimePicker } from 'antd';
2015-11-16 23:11:41 +08:00
function onChange(time, timeString) {
console.log(time, timeString);
2015-11-19 15:53:40 +08:00
}
2016-11-11 16:06:11 +08:00
ReactDOM.render(<TimePicker onChange={onChange} />, mountNode);
2015-11-16 23:11:41 +08:00
````