UNPKG

@mui/base

Version:

A library of headless ('unstyled') React UI components and low-level hooks.

6 lines 183 B
/** * Determines if a given element is a DOM element name (i.e. not a React component). */ export default function isHostComponent(element) { return typeof element === 'string'; }