export default function useScrollToTopOnDependencyChange(...dependencies) {
useEffect(() => window.scrollTo(0, 0), dependencies);
}
Dependencies should be an array.
Since this is a oneliner, might be best to deprecate this and suggest that uses add this in their projects directly without the extra wrapper hook.
Dependencies should be an array.
Since this is a oneliner, might be best to deprecate this and suggest that uses add this in their projects directly without the extra wrapper hook.