J
J
John Johnson2019-12-20 17:32:30
JavaScript
John Johnson, 2019-12-20 17:32:30

How to redirect ref correctly in React?

Hello. Tell me, there are 3 components App, child1, child2.
Tree nested.
A ref has been created in App, how can I write the home element of the child2 H2 component into it?
Sandbox

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
Ro37A, 2019-12-20
@Rocknrolla99

child2 also needs to be wrapped in forwardRef.

const Child2 = React.forwardRef((props, ref) => {
  console.log("Child2-ref", ref);
  return <h2 ref={ref}>Some Description</h2>;
});

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question