1.0.1 • Published 6 years ago

react-combine-refs v1.0.1

Weekly downloads
38
License
MIT
Repository
github
Last release
6 years ago

react-combine-refs

Creates a new ref callback, that updates ref arguments. A ref argument can be a function or an object with a .current property.

import combineRefs from 'react-combine-refs';

function MyComponent(
  props,
  refProp,
) {
  const myCustomRef = useRef(null);
  
  // ...
  
  return (
    <div ref={combineRefs(refProp, myCustomRef)}>
      // ...
    </div>
  );
}