Skip to content
Advertisement

How to generate data for the child component?

Here is the parent code:

JavaScript

Here is the child code:

JavaScript

The expected result is that:

  1. When the user picks a month from the MonthPicker, the parent component submit the select month and year to server.

  2. Get the result from the server and then send the result to the child component.

The actual result is that the child components show its props twice(both the parent initial mount and update mount), that may be caused by 2 state variables exist.

However, I don’t know how to implement the function without using 2 state variables.

Is there any more simple solution?

Advertisement

Answer

If it’s really an issue, I’d just use conditional rendering – have rosterTableData be empty initially, and check if it’s empty before rendering the BB:

JavaScript
JavaScript
Advertisement