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