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