--- order: 1 title: zh-CN: 受控组件 en-US: Under Control --- ## zh-CN value 和 onChange 需要配合使用。 ## en-US `value` and `onChange` should be used together, ```tsx import { TimePicker } from 'antd'; import type { Dayjs } from 'dayjs'; import React, { useState } from 'react'; const App: React.FC = () => { const [value, setValue] = useState(null); const onChange = (time: Dayjs) => { setValue(time); }; return ; }; export default App; ```