mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
2cdf586291
* chore: fix lint * chore: fix lint * test: fix 16 * fix: lint
10 lines
234 B
TypeScript
10 lines
234 B
TypeScript
import React from 'react';
|
|
import dayjs from 'dayjs';
|
|
import { TimePicker } from 'antd';
|
|
|
|
const format = 'HH:mm';
|
|
|
|
const App: React.FC = () => <TimePicker defaultValue={dayjs('12:08', format)} format={format} />;
|
|
|
|
export default App;
|