mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 05:05:48 +08:00
541 B
541 B
order | title | ||||
---|---|---|---|---|---|
1 |
|
zh-CN
value 和 onChange 需要配合使用。
en-US
value
and onChange
should be used together,
import { TimePicker } from 'antd';
import type { Dayjs } from 'dayjs';
import React, { useState } from 'react';
const App: React.FC = () => {
const [value, setValue] = useState<Dayjs | null>(null);
const onChange = (time: Dayjs) => {
setValue(time);
};
return <TimePicker value={value} onChange={onChange} />;
};
export default App;