mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-23 18:50:06 +08:00
13 lines
309 B
TypeScript
13 lines
309 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 type { TabPaneProps };
|
|
|
|
export default TabPane;
|