function getEl()

in src/components/Portal/index.ts [11:18]


function getEl(el: Container) {
  if (!el) return null;

  if (el instanceof Element) {
    return el;
  }
  return typeof el === 'function' ? el() : el.current || el;
}