UNPKG

hc-materials

Version:

基于react的通用组件库

7 lines 311 B
export default function isReactComponent(component) { if (typeof component === 'function') { return component.prototype.isReactComponent || String(component).includes('return React.createElement'); } else { return component.$$typeof && String(component.$$typeof).indexOf('Symbol(react') === 0; } }