You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks to React's recently introduced concept of forwardRefs, a component ref can now be forwarded to an underlying element. That means that calling myRef.current.focus() against a NumericInput component could be delegated to the rendered input DOM element.
This change would allow the component to behave naturally without a special query selector lookup.
The text was updated successfully, but these errors were encountered:
Thanks to React's recently introduced concept of
forwardRef
s, a component ref can now be forwarded to an underlying element. That means that callingmyRef.current.focus()
against a NumericInput component could be delegated to the renderedinput
DOM element.This change would allow the component to behave naturally without a special query selector lookup.
The text was updated successfully, but these errors were encountered: