"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getInitialRefElement = void0;
exports.getInitialRefElement = function () {
if (typeofdocument === 'undefined') {
// this is executed in SSR// document is not definedreturnnull;
}
returndocument.body;
};