showing results for - "difference between w component did update and did mount"
Stefano
26 Jun 2019
1componentDidMount() : invoked immediately after a component is mounted (inserted into the DOM tree) 
2componentDidUpdate(prevProps, prevState, snapshot) : is invoked immediately after updating occurs.
3This method is not called for the initial render.