ant-design/components/tabs/TabPane.ts

13 lines
309 B
TypeScript
Raw Permalink Normal View History

import type * as React from 'react';
2023-08-28 09:38:50 +08:00
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;