mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 05:05:48 +08:00
13 lines
228 B
TypeScript
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;
|