Reputation:
When does the React constructor run relative to component lifecycle?
The newest diagram I found for component lifecycle was here:
and it is from 2017 and does not include the constructor for some reason.
When does the constructor() run and is there a newer diagram available in mid 2019?
Upvotes: 0
Views: 75
Reputation:
It will occur in the mount phase as seen in these two diagrams by Mosh
and by Hackernoon:
Upvotes: 0
Reputation: 316
The order the React components and constructor works are;
Upvotes: 1