mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
13 lines
304 B
TypeScript
13 lines
304 B
TypeScript
|
import type * as React from 'react';
|
||
|
import type { TabPaneProps } from 'rc-tabs/lib/TabPanelList/TabPane';
|
||
|
|
||
|
const TabPane: React.FC<TabPaneProps> = () => null;
|
||
|
|
||
|
if (process.env.NODE_ENV !== 'production') {
|
||
|
TabPane.displayName = 'DeprecatedTabPane';
|
||
|
}
|
||
|
|
||
|
export { TabPaneProps };
|
||
|
|
||
|
export default TabPane;
|