Files
Checkmate/node_modules/@mui/base/utils/isHostComponent.js
2024-05-05 11:21:00 +03:30

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';
}