JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "root-el.ts"

Full Path: /home/markqprx/iniasli.pro/resources/client/core/root-el.ts
File size: 339 bytes
MIME-type: text/plain
Charset: utf-8

export let rootEl = (
  typeof document !== 'undefined'
    ? document.getElementById('root') ?? document.body
    : undefined
) as HTMLElement;

export let themeEl = (
  typeof document !== 'undefined' ? document.documentElement : undefined
) as HTMLElement;

export function setRootEl(el: HTMLElement) {
  rootEl = el;
  themeEl = el;
}