FrontPastel/node_modules/@mui/base/utils/isHostComponent.js

6 lines
175 B
JavaScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
/**
* Determines if a given element is a DOM element name (i.e. not a React component).
*/
export function isHostComponent(element) {
return typeof element === 'string';
}