in ReactJS by

What is componentDidUpdate method?

1 Answer

0 votes
by

Mostly it is used to update the DOM in response to prop or state changes. This will not fire if shouldComponentUpdate() returns false.

...