"use client";

import { usePathname } from "next/navigation";
import { useLayoutEffect } from "react";
import { scrollWindowToTop } from "@/lib/commonFunctions";

export default function ScrollToTop() {
  const pathname = usePathname();

  useLayoutEffect(() => {
    scrollWindowToTop();
  }, [pathname]);

  return null;
}
