0 votes
in ReactJS by

What is the lifecycle methods order in mounting?

1 Answer

0 votes
by

he lifecycle methods are called in the following order when an instance of a component is being created and inserted into the DOM.

  1. constructor()
  2. static getDerivedStateFromProps()
  3. render()
  4. componentDidMount()

Related questions

0 votes
asked Jul 2, 2019 in ReactJS by Venkatshastri
0 votes
asked Jul 2, 2019 in ReactJS by Venkatshastri
...