mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
628968f460
* refactor: Using items * docs: replace with items * docs: deprecated demo * test: Update snapshot * docs: simple basic demo * test: coverage
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;
|