scroll to top on opening notifications & thread pages

This commit is contained in:
Martti Malmi
2024-02-12 12:36:26 +02:00
parent ff5d2ee32d
commit e2164800a9
4 changed files with 18 additions and 1 deletions

View File

@ -0,0 +1,12 @@
import { useEffect } from "react";
import { useLocation } from "react-router-dom";
export default function ScrollToTop() {
const { pathname } = useLocation();
useEffect(() => {
window.scrollTo(0, 0);
}, [pathname]);
return null;
}