Files
2026-01-16 02:20:32 +00:00

8 lines
234 B
JavaScript

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;