What is the mounting phase in React's component lifecycle?
The mounting phase is when a component is being created and inserted into the DOM for the first time. This phase includes initialization of the component, setting up the initial state, rendering it for the first time, and then performing any necessary setup in componentDidMount.