Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

getContainer.js 276B

123456
  1. import ReactDOM from 'react-dom';
  2. export default function getContainer(container, defaultContainer) {
  3. if (container == null) return defaultContainer;
  4. container = typeof container === 'function' ? container() : container;
  5. return ReactDOM.findDOMNode(container) || null;
  6. }