Concept Flow - Mounting phase
Component Function Called
JSX Evaluated -> Virtual DOM Created
React DOM Mounts Virtual DOM to Real DOM
useEffect with empty deps runs
Component Ready on Screen
The mounting phase starts when React calls the component function, creates the virtual DOM from JSX, mounts it to the real DOM, and runs effects for setup.