mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
7 lines
154 B
TypeScript
7 lines
154 B
TypeScript
import { useEffect } from 'react';
|
|
|
|
export const useScrollToTop = (deps?: any[]) => {
|
|
useEffect(() => {
|
|
window.scrollTo(0, 0);
|
|
}, deps || []);
|
|
};
|