useThemeKey.js 234 B

12345678
  1. import * as React from 'react';
  2. const fullClone = Object.assign({}, React);
  3. const {
  4. useId
  5. } = fullClone;
  6. const useEmptyId = () => '';
  7. const useThemeKey = typeof useId === 'undefined' ? useEmptyId : useId;
  8. export default useThemeKey;