ohctechv3/.svn/pristine/e3/e3fc7370db3e9ea486c574ee4525d296690d0a63.svn-base

6 lines
175 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
/**
* Determines if a given element is a DOM element name (i.e. not a React component).
*/
export function isHostComponent(element) {
return typeof element === 'string';
}