mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
5d3381334c
* chore: remove useless tsx support * add * revert * add * fix * fix * add test case * fix
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;
|