You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

491 B

order title
1 [{zh-CN 受控组件} {en-US Under Control}]

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);