react-integration
react-integration copied to clipboard
Element ref is not set
<Comp ref='myRef' />
will not set the ref
to "myRef"
; it will be undefined
.
Similar to #26
Additionally <Comp ref={(elem) => … } />
is passed null rather than the DOM element.