React philosophy
Lets briefly understand how React works to set up some context on component rendering.
React uses the process of reconciliation to update the browser DOM which contributes to its efficient rendering and updating of the UI. To carr...