ohctechv3/.svn/pristine/e3/e3fc7370db3e9ea486c574ee4525d296690d0a63.svn-base
2024-10-28 15:03:36 +05:30

6 lines
175 B
Plaintext

/**
* Determines if a given element is a DOM element name (i.e. not a React component).
*/
export function isHostComponent(element) {
return typeof element === 'string';
}