export function prepareUserState()

in website/src/pages/Build-IA/CommunityGallery.tsx [65:74]


export function prepareUserState(): UserState | undefined {
  if (ExecutionEnvironment.canUseDOM) {
    return {
      scrollTopPosition: window.scrollY,
      focusedElementId: document.activeElement?.id,
    };
  }

  return undefined;
}