mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
|
import React from 'react';
|
||
|
import { TimePicker } from 'antd';
|
||
|
|
||
|
const { _InternalPanelDoNotUseOrYouWillBeFired: InternalTimePicker } = TimePicker;
|
||
|
|
||
|
const App: React.FC = () => <InternalTimePicker />;
|
||
|
|
||
|
export default App;
|