Detalhes do pacote

apply-ref

mitchellhamilton39.4kMIT1.0.0

Apply React refs

react, ref, resolve

readme (leia-me)

apply-ref

Apply React refs

Install

yarn add apply-ref

Usage

import applyRef, { applyRefs } from 'apply-ref'

let ref1 = val => {/*...*/}
let ref2 = React.createRef()

<div ref={applyRefs(ref1, ref2)} />

// OR

<div ref={(val) => {
  applyRef(ref1, val)
  applyRef(ref2, val)
  someOtherHandler(val)
}} />