No, React doesn't render everything when state changes.
Whenever a component is dirty (its state changed), that component and its children are re-rendered. This, to some extent, is to re-render as little as possible. The only time when render isn't called is when some branch is moved to another root, where theoretically we don't need to re-render anything. In your example,
TimeInChild
is a child component ofMain
, so it also gets re-rendered when the state ofMain
changes.React doesn't compare state data. When
setState
is called, it marks the component as dirty (which means it needs to be re-rendered). The important thing to note is that althoughrender
method of the component is called, the real DOM is only updated if the output is different from the current DOM tree (a.k.a diffing between the Virtual DOM tree and document's DOM tree). In your example, even though thestate
data hasn't changed, the time of last change did, making Virtual DOM different from document's DOM, hence why the HTML is updated.