Files
ETB/ETB-FrontEnd/node_modules/@mui/base/utils/isHostComponent.js
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

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