ant-design/components/config-provider/hooks/useThemeKey.ts
2023-12-05 11:33:43 +08:00

13 lines
228 B
TypeScript

import * as React from 'react';
const fullClone = {
...React,
};
const { useId } = fullClone;
const useEmptyId = () => '';
const useThemeKey = typeof useId === 'undefined' ? useEmptyId : useId;
export default useThemeKey;