mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 03:18:11 +00:00
523 B
523 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 1 |
|
zh-CN
value 和 onChange 需要配合使用。
en-US
value and onChange should be used together,
import { TimePicker } from 'antd';
class Demo extends React.Component {
state = {
value: null,
};
onChange = time => {
console.log(time);
this.setState({ value: time });
};
render() {
return <TimePicker value={this.state.value} onChange={this.onChange} />;
}
}
ReactDOM.render(<Demo />, mountNode);