As React Documentation says:
componentDidUpdate()is invoked immediately after updating occurs
But I've noticed that componentDidUpdate() is invoked even a browser DOM element isn't updated.
So, what does the React Documentation mean by updating occurs?

