提交 7733962e 编写于 作者: A afc163

merge

......@@ -9,13 +9,16 @@
````jsx
import { Datepicker, Timepicker } from 'antd';
function onChange(value) {
console.log(value);
function onDateChange(date) {
console.log(date);
}
function onTimeChange(time) {
console.log(time);
}
ReactDOM.render(<div>
<Datepicker onChange={onChange} />
<Timepicker onChange={onChange} />
<Datepicker onChange={onDateChange} />
<Timepicker onChange={onTimeChange} />
</div>, document.getElementById('components-datepicker-demo-time'));
````
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册