Add typing to useScrollIntoView ref

This commit is contained in:
Robert 2024-02-07 15:43:43 +00:00
Родитель 126acc3979
Коммит b577576b00
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -3,10 +3,10 @@ import { useEffect } from "react";
export function useScrollIntoView<T>(
selectedElement: T | undefined,
selectedElementRef: RefObject<any>,
selectedElementRef: RefObject<HTMLElement>,
) {
useEffect(() => {
const element = selectedElementRef.current as HTMLElement | undefined;
const element = selectedElementRef.current;
if (!element) {
return;
}