1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00
vault-frontend/src/utils/hooks/useScrollToTop.ts
2021-03-06 13:17:39 +07:00

7 lines
154 B
TypeScript

import { useEffect } from 'react';
export const useScrollToTop = (deps?: any[]) => {
useEffect(() => {
window.scrollTo(0, 0);
}, deps || []);
};