UNPKG

mobile-react-infinite-calendar

Version:

A mobile-optimized infinite scroll calendar component for React

15 lines (14 loc) 306 B
/** * 다중 ref 관리 커스텀 훅 */ import { useRef } from 'react'; export function useMultiRef() { const ref1 = useRef(null); const ref2 = useRef(null); const setRefs = (el) => { ; ref1.current = el; ref2.current = el; }; return [ref1, ref2, setRefs]; }