What should you NOT do in the render method during mounting?
You should NOT make API calls or introduce side effects in the render method. The render method should be a pure function that returns JSX based on props and state, without modifying state, interacting with the browser, or performing any asynchronous operations. Side effects should be handled in lifecycle methods like componentDidMount or hooks like useEffect.