Making a Custom React Hook code: /** * useScroll React custom hook * Usage: * const { scrollX, scrollY, scrollDirection } = useScroll(); */ import { useState, useEffect } from "react"; export function useScroll() { // storing this to ...
blog.coolhead.in2 min read
No responses yet.