L
L
lexstile2019-12-09 13:24:47
React
lexstile, 2019-12-09 13:24:47

Will React re-render all child components in a chain when the parent changes?

There is a simple conditional component:

<ul>
  <li key="1">1</li>
  <li key="2">2</li>
  <li key="3">3</li>
</ul>

If we change the ul , will React re-render all the children in the chain?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
C
camelCaseVlad, 2019-12-09
@camelCaseVlad

If the parent's props change, the children wo n't re-render.
If the state of the parent changes, the children will be re-rendered.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question