minishouyin/node_modules/antd/es/config-provider/hooks/useThemeKey.js

8 lines
234 B
JavaScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
import * as React from 'react';
const fullClone = Object.assign({}, React);
const {
useId
} = fullClone;
const useEmptyId = () => '';
const useThemeKey = typeof useId === 'undefined' ? useEmptyId : useId;
export default useThemeKey;