mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
1fc3675b91
* Revert "type: TimePicker added hourStep type (#40947)"
This reverts commit c89640d843
.
* deps: bump rc-picker@3.6.0
* Update package.json
Co-authored-by: Wuxh <wxh1220@gmail.com>
* Update components/time-picker/demo/interval-options.tsx
---------
Co-authored-by: MadCcc <1075746765@qq.com>
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
import React from 'react';
|
|
import { TimePicker } from 'antd';
|
|
|
|
const App: React.FC = () => <TimePicker minuteStep={15} secondStep={10} hourStep={1} />;
|
|
|
|
export default App;
|