react-server675fbba4
react-serverfilesdocssrccomponentsutils.mjs
docs/src/components/utils.mjsmjs297 Be5580d59
export function scrollHashIntoView(hash) {
  if (hash === "#") {
    window.scrollTo({
      top: 0,
      behavior: "smooth",
    });
  } else {
    document.querySelector(hash)?.scrollIntoView({
      behavior: "smooth",
      block: "start",
    });
  }

  history.pushState(null, "", hash);
}