Skip to content
Advertisement

Pass props with callback from Parent to component

I have this parent App.jsx, with two components <Child1/> and <Child2/> imported.

JavaScript

This is Child1.jsx, where I have ‘players’ set locally by this.setState():

JavaScript

And here Child2.jsx, which needs ‘players’ as props, given the fact they are fetched at Child1.jsx.

JavaScript

I know I can achieve this by having a callback to App.jsx at Child1.jsx, so I can pass players as props to Child2.jsx, but how so?

Advertisement

Answer

You can keep the players state on the Parent of both Child components. This way, you can pass it down as props to the relevant components. Refer to my comments on the code for insight

JavaScript
JavaScript
Advertisement