mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 14:29:33 +08:00
490 B
490 B
order | title | ||||
---|---|---|---|---|---|
1 |
|
zh-CN
value 和 onChange 需要配合使用。
en-US
value
and onChange
should be used together,
import React, { useState } from 'react';
import { TimePicker } from 'antd';
const Demo = () => {
const [value, setValue] = useState(null);
const onChange = time => {
setValue(time);
};
return <TimePicker value={value} onChange={onChange} />;
}
ReactDOM.render(<Demo />, mountNode);