unis_crm/frontend1/node_modules/antd/es/config-provider/hooks/useThemeKey.js

8 lines
234 B
JavaScript
Raw Normal View History

2026-03-26 09:29:55 +00: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;