skip to Main Content

React typescript – Reactjs

Code: export const HomePage = (): JSX.Element => { const refContainer = useRef<HTMLDivElement>(null); const [scrollY, setScrollY] = useState<number>(0); const { current: elContainer } = refContainer; const handleScroll = useCallback(() => { if (elContainer) setScrollY(elContainer.scrollTop); }, []); useEffect(() => { document.addEventListener("scroll",…

VIEW QUESTION
Back To Top
Search