Blame view

天文台pc/tianwentai-ui/node_modules/@mui/utils/esm/isHostComponent/isHostComponent.js 200 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
  /**
   * Determines if a given element is a DOM element name (i.e. not a React component).
   */
  function isHostComponent(element) {
    return typeof element === 'string';
  }
  export default isHostComponent;