ant-design/components/tabs/TabPane.ts

13 lines
308 B
TypeScript
Raw Normal View History

import type * as React from 'react';
import type { TabPaneProps } from 'rc-tabs/es/TabPanelList/TabPane';
const TabPane: React.FC<TabPaneProps> = () => null;
if (process.env.NODE_ENV !== 'production') {
TabPane.displayName = 'DeprecatedTabPane';
}
export type { TabPaneProps };
export default TabPane;