8d96984Update benchmark results from 2026-06-16 14:21:30 [skip ci]GitHub Actions Bot 1import { useEffect } from "react";
2import { useLocation } from "react-router-dom";
4export function ScrollToTop() {
5 const { pathname } = useLocation();
7 useEffect(() => {
8 window.scrollTo(0, 0);
9 }, [pathname]);
11 return null;
12}