mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-21 00:59:44 -06:00
6 lines
175 B
JavaScript
6 lines
175 B
JavaScript
/**
|
|
* Determines if a given element is a DOM element name (i.e. not a React component).
|
|
*/
|
|
export function isHostComponent(element) {
|
|
return typeof element === 'string';
|
|
} |