1.0.1 • Published 6 years ago
react-combine-refs v1.0.1
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>
);
}
1.0.1
6 years ago